Easily start new projects using FukigenMedia's starterpack.
Usually, many of us are confused about where to start a new project. Because there are too many packages that need to be installed, that's why we made this starterpack to make it easier for us and for you to start a new project.
php artisan optimize:clear
composer update
php artisan filament:upgrade
php artisan shield:upgrade
Generate new repository with this template: https://github.com/fukigenmedia/filamentadmin-starterpack/generate
Install the package via composer:
composer install
Compile all CSS and JS:
npm install && npm run dev
Create copy of .env and generate laravel key:
cp .env.example .env
php artisan key:generate
php artisan storage:link
Configure your .env file:
We've added some new keys to make it easier for you to configure your app.
APP_LOCALE=en
APP_TIMEZONE=UCT
FILAMENTADMIN_EMAIL="@gmail.com"
Generate default permission and run migration:
php artisan shield:install --fresh
That command will flush all your table, and run some migration. After that you will be asked some questions, and generate new super_admin user.
If you get the question :
Shield Resource already exists. Overwrite?
Please, just answer no because the command will overwrite the existing file.
Congratulation, you can access your application on /app route. 🔥
Now you can use the features of the TALL Stack and FilamentAdmin.
After creating the resource, please run the following command to create a new permission:
php artisan shield:generate
Next, you can read each documentation of the related packages. Thank you! 🥳
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.