Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jinyphp/html
HTML Object tags for Laravel
https://github.com/jinyphp/html
Last synced: 5 days ago
JSON representation
HTML Object tags for Laravel
- Host: GitHub
- URL: https://github.com/jinyphp/html
- Owner: jinyphp
- License: mit
- Created: 2022-02-16T05:06:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T11:43:38.000Z (3 months ago)
- Last Synced: 2024-10-03T15:07:38.879Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 107 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: license.md
Awesome Lists containing this project
README
# 지니 HTML
`jiny/html`는 서버사이드 html 코드를 생성할 수 있는 객체 관리 패키지 입니다. 복잡한 html 코드를 데이터 기반으로 빌드를 할 수 있습니다.## 설치방법
라라벨 프로젝트에서 컴포저를 통하여 페키지를 설치합니다.```bash
composer require jiny/html
```## 사용방법
객체 클래스를 통하여 테그를 사용할 수 있습니다. `CTag` 객체는 기본 테그를 생성할 수 원형 객체 입니다. `CTag`는 3개의 인자를 전달받습니다.```php
$el = new CTag('div',true, "body...");
```