https://github.com/abdulbasit-dev/laravel-airline-reservation-system
https://github.com/abdulbasit-dev/laravel-airline-reservation-system
bootstrap5 laravel
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdulbasit-dev/laravel-airline-reservation-system
- Owner: abdulbasit-dev
- Created: 2022-09-18T03:49:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-08T04:13:52.000Z (over 3 years ago)
- Last Synced: 2025-05-31T10:30:44.961Z (about 1 year ago)
- Topics: bootstrap5, laravel
- Language: PHP
- Homepage: http://laravel-airline.herokuapp.com/public/
- Size: 135 MB
- Stars: 11
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Larevel Airline Reservation System
- User can search for flights and book it.
- admin in dahboard mange the flights, airlines, airports ...
## Demo
- Dashbaord
- Flights
- Airlins

- [Live Preview](http://laravel-airline.herokuapp.com/public/)
## Installation
1. clone the project `git clone https://github.com/abdulbasit-dev/laravel-airline-reservation-system.git`
2. create a file with name .env `touch .env`
3. copy content of .env.example to .env
4. set up your database connection in .env
5. run `composer install`
6. generate app key `php artisan key:generate`
7. run `php artisan migrate --seed` (note --seed will fill the database with dummy data)
8. your are good to go 😊
## Usefull Commands
- create controller with its related model + resourse functions
`cntrl UserController --model=User -r` for normal controller
`cntrl UserController --model=User --api` for normal api controller
## Laravel Artisan Command Shourtcut In Git Bash
if u are using windows go to this path "C:\Program Files\Git\etc", in there open "bash.bashrc" file
copy content of this gist
[abdulbasit-dev/bash.bashrc](https://gist.github.com/abdulbasit-dev/d13ff13fb4700995de97a4b88a626753)
and put it into your "C:\Program Files\Git\etc\bash.bashrc" file
update.fix