Skip to content

This project was generated with Laravel and Filament. The purpose of this project is to showcase a Laravel Filament Project with basic CRUD functionalities.

Notifications You must be signed in to change notification settings

jeddsaliba/filament-crud

Repository files navigation

Laravel CRUD

This project was generated with Laravel and Filament.

The purpose of this project is to showcase a Laravel Filament Project with basic CRUD functionalities.

Table of Contents

Installation
Setup Local Environment
Database
Create Administrator Account
Development Server
Administrator Panel
Support

Installation

Install the dependencies by running:

composer install

Setup Local Environment

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:

  1. Open your .env file and change APP_URL=http://localhost to APP_URL=http://localhost:8000
  2. Open your terminal and run this command:
php artisan storage:link

Database

Assuming that you have already created an empty database, run this command to migrate the database tables:

php artisan migrate --seed

Create Administrator Account

In order to create an administrator account, run this command:

php artisan make:filament-user

Development Server

In order for this project to run on your local environment, run this command:

php artisan serve

Administrator Panel

Once everything is set up, you can now go to your admin panel by opening your browser and going to this URL:

http://localhost:8000/admin

Support

For support, email jeddsaliba@gmail.com.

About

This project was generated with Laravel and Filament. The purpose of this project is to showcase a Laravel Filament Project with basic CRUD functionalities.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published