Component is used to separate small parts from the main view and still works perfectly.
teepluss/component is a Laravel package for component is used to separate small parts from the main view and still works perfectly..
It currently has 2 GitHub stars and 224 downloads on Packagist (latest version 1.0.1).
Install it with composer require teepluss/component.
Discover more Laravel packages by teepluss
or browse all Laravel packages to compare alternatives.
Last updated
Component is used to separate small parts from the main view and still works perfectly.
To get the latest version of Theme simply require it in your composer.json file.
"teepluss/component": "dev-master"
You'll then need to run composer update to download it and have the autoloader updated.
In your config/app.php add 'Teepluss\Component\ComponentServiceProvider' to the end of the providers array:
'providers' => [
...
'Teepluss\Component\ComponentServiceProvider',
]
Publish Configuration
php artisan vendor:publish --provider="Teepluss\Component\ComponentServiceProvider"
Using artisan CLI to create a component, then you can found your component into app/Components.
php artisan component:make LiveChatBox
The command will generate a structure like this:
root
|- app
|--- Components
|----- LiveChatbox
|------- assets
|--------- css
|------------ style.css
|--------- img
|--------- js
|------------ script.js
|------- lang
|--------- en
|------------ messages.php
|------- views
|--------- index.blade.php
|------- LiveChatbox.php
|----- gulp.js
{!! component()->uses('LiveChatBox', ['args' => '1'])->render() !!}
Install gulp
npm install gulp
Using gulp to publish component assets.
$ cd app/Components/
$ gulp
$ gulp watch
Render all component scripts and styles from the main layout
// Display component scripts and styles.
{!! component()->scripts() !!}
{!! component()->styles() !!}
// Locate to asset path.
{!! component()->uses('LiveChatBox')->asset('img/someimage.png') !!}
Translation
{!! component()->trans('message') !!}
If you have some problem, Contact [email protected]