A modern web application for managing events and ticket bookings.
Tech Stack:
- Laravel 11
- Filament
- MySQL
- Tailwind CSS
Follow these steps to set up the project on your local machine:
- Clone the repository:
git clone https://github.com/nath2006/booking-workshop-fullstack.git
- Navigate into the project dir:
cd <project-directory>
- Install PHP Dependencies using Composer
composer install
- Copy the .env.example file to .env
cp .env.example .env
- Generate the application key:
php artisan key:generate
After completing the cloning process, now let we migrate database:
-
Configure your DB credentials in the .env file:
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database_name DB_USERNAME=your_username DB_PASSWORD=your_password
-
Run the database migration to create the necessary tables:
php artisan migrate
After completing the migrate database, now let we cook (run the project):
- Start the Laravel development server:
php artisan serve
- The project should accessible in your browser at:
http://127.0.0.1:8000