Thanks for visiting my GitHub account!
Laravel is a free and open-source PHP- based web framework for building high-end web applications. It was created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern and based on Symfony. see-more
Dashboard | Profile |
Logo-MGT | Chefs-MGT |
Hero-Area | Message |
Product-MGT | Admin-MGT |
Upload-Image | |
HOME |
Step-1: For Set up Project
gh repo clone learnwithfair/laravel-restaurant
i) composer install or composer update
ii) npm install
Step-2: Connect Database
APP_KEY=base64:2qbhz1ExIN5uT3YfW0XBWaVwh7GPdG44bRFRDjkQQog=
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=DatabaseName
DB_USERNAME=root
DB_PASSWORD=
For Send Mail
MAIL_MAILER=smtp
MAIL_HOST=sandbox.smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=YourUserName
MAIL_PASSWORD=YourPassword
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="yourEmailAddress"
MAIL_FROM_NAME="${APP_NAME}"
Create data table write the command in cmd
php artisan migrate
Note: If it's not working correctly then following the s
Manually, Create the desired database in the path-> http://localhost/phpmyadmin/
Or Create database using cmd as-
C:xamppmysqlbin
mysql -u root -p (password: Not Used)
create database DatabaseName; (semicolon must be add in the end)
show databases;
exit;
php artisan migrate
For Run Project
php artisan serve
npm run dev