kakhura / laravel-site-bases
This package is site bases functionality
Package info
github.com/kakhura/laravel-site-bases
Language:Blade
pkg:composer/kakhura/laravel-site-bases
Requires
- php: >=7.0.0
- barryvdh/laravel-translation-manager: ^0.6.8
- intervention/image: ^3.11.3
- laravel/ui: ^4.6.1
- mcamara/laravel-localization: ^2.3.0
- owen-it/laravel-auditing: ^14.0.0
- unisharp/laravel-filemanager: ^2.10.1
- waska14/laravel-with-db-transactions: ^4.0
This package is auto-updated.
Last update: 2026-06-09 06:56:44 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.