razan / school
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is auto-updated.
Last update: 2025-06-29 01:59:20 UTC
README
1.before install school Razan package, require use this commands:
composer require laravel/jetstream
php artisan jetstream:install livewire
composer require santigarcor/laratrust
php artisan vendor:publish --tag="laratrust-seeder"
php artisan laratrust:setup
php artisan laratrust:seeder
2.
composer require razan/school
in config->app.php add to providers array
Razan\School\SchoolServiceProvider::class,
then run in terminal:
php artisan vendor:publish --provider="Razan\School\SchoolServiceProvider"
in routes-> web.php edit:Route::group(['namespace'=>'Razan\School\Http\Livewire']
Route::group(['namespace'=>'App\Http\Livewire']
and app->http->livewire edit namespace from Razan\School\Http\Livewire to
App\Http\Livewire
3.In the database/seeds/DatabaseSeeder.php file
$this->call(LaratrustSeeder::class);
php artisan migrate
php artisan db:seed
4.
npm install
npm run dev