| Package Data | |
|---|---|
| Maintainer Username: | wiwatsrt |
| Maintainer Contact: | wiwat_srt@hotmail.com (Wiwat Srisattha) |
| Package Create Date: | 2016-09-17 |
| Package Last Update: | 2017-12-28 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 03:00:43 |
| Package Statistics | |
|---|---|
| Total Downloads: | 110 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
In order to install Laravel 5, just add
"l5starter/setting": "5.4.x-dev"
to your composer.json. Then run composer install or composer update.
Then in your config/app.php add in providers
L5Starter\Setting\SettingServiceProvider::class,
Publish Configuration
php artisan vendor:publish --provider="L5Starter\Setting\SettingServiceProvider"
Running Migrations
$ php artisan migrate
Running Seeders
$ php artisan db:seed --class=SettingsTableSeeder
Add menu in resources/views/vendor/l5starter/admin/partials/sidebar.blade.php
<li class="{{ (Request::is('admin/settings*') ? 'active' : '') }}">
<a href="{{ route('admin.settings.index') }}">
<i class="fa fa-cog"></i> <span>{{ trans('l5starter::general.settings') }}</span>
</a>
</li>