kakhura / laravel-site-bases
This package is site bases functionality
Installs: 210
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: >=7.0.0
- barryvdh/laravel-translation-manager: ^0.6.6
- intervention/image: ^3.7.2
- laravel/ui: ^4.5.2
- mcamara/laravel-localization: ^2.0.1
- owen-it/laravel-auditing: ^13.6.8
- unisharp/laravel-filemanager: ^2.9.0
- waska14/laravel-with-db-transactions: ^4.0
- dev-master
- 61.0.0
- 60.0.0
- 59.0.0
- 58.0.0
- 57.0.0
- 56.0.0
- 55.0.0
- 54.0.0
- 53.0.0
- 52.0.0
- 51.0.0
- 50.0.0
- 49.0.0
- 48.0.0
- 47.0.0
- 46.0.0
- 45.0.0
- 44.0.0
- 43.0
- 42.0.0
- 41.0.0
- 40.0.0
- 39.0.0
- 38.0.0
- 37.0.0
- 36.0.0
- 35.0.0
- 34.0.0
- 33.0.0
- 32.0.0
- 31.0.0
- 30.0.0
- 29.0.0
- 28.0.0
- 27.0.0
- 26.0.0
- 25.0.0
- 24.0.0
- 23.0.0
- 22.0.0
- 21.0.0
- 20.0.0
- 19.0.0
- 18.0.0
- 17.0.0
- 16.0.0
- 15.0.0
- 14.0.0
- 13.0.0
- 12.0.0
- 11.0.0
- 10.0.0
- 9.0.0
- 8.0.0
- 7.0.0
- 6.0.0
- 5.0.0
- 4.0.0
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.1
- 2.0.0
- 1.0.2
- 1.0.1
- 1.0.0
- dev-create-db-connection
This package is auto-updated.
Last update: 2024-11-04 11:07:51 UTC
README
Docs
Installation
Add the package in your composer.json by executing the command.
composer require kakhura/laravel-site-bases
For Laravel versions before 5.5 or if not using auto-discovery, register the service provider in config/app.php
'providers' => [ /* * Package Service Providers... */ \Kakhura\LaravelSiteBases\SiteBasesServiceProvider::class, ],
Configuration
If you want to change default configuration, you must publish default configuration file to your project by running this command in console:
php artisan vendor:publish --tag=kakhura-site-bases-config
This command will copy file [/vendor/kakhura/laravel-site-bases/config/kakhura.site-basbes.php]
to [/config/kakhura.site-basbes.php]
Views
After publish Configuration, you must publish views, by running this command in console:
php artisan vendor:publish --tag=kakhura-site-bases-views
This command will copy file [/vendor/kakhura/laravel-site-bases/resources/views]
to [/resources/views/vendor/admin/site-bases]
Migrations
After publish Views, you must publish migrations, by running this command in console:
php artisan vendor:publish --tag=kakhura-site-bases-migrations
This command will copy file [/vendor/kakhura/laravel-site-bases/database/migrations]
to [/database/migrations]
After publish Migrations, you must run this command in console:
php artisan kakhura:run-commands
This command creates some necessary stuffs.