This project was generated with Laravel and Filament.
The purpose of this project is to showcase a Laravel Filament Project with basic CRUD functionalities.
Installation
Setup Local Environment
Database
Create Administrator Account
Development Server
Administrator Panel
Support
Install the dependencies
by running:
composer install
Generate a new .env
file by running:
cp .env.example .env
Open your .env
file and set the database configuration by updating the following:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
There are cases where images could not load properly. If this happens to you, please follow these steps:
- Open your
.env
file and changeAPP_URL=http://localhost
toAPP_URL=http://localhost:8000
- Open your terminal and run this command:
php artisan storage:link
Assuming that you have already created an empty database, run this command to migrate the database tables:
php artisan migrate --seed
In order to create an administrator account, run this command:
php artisan make:filament-user
In order for this project to run on your local environment, run this command:
php artisan serve
Once everything is set up, you can now go to your admin panel by opening your browser and going to this URL:
For support, email jeddsaliba@gmail.com.