Laravel Child Vaccination Management System.
Clone the project using SSH or HTTPS.
[email protected]/Sagarhoraa/laravel-Repo-.git
Go to the Project Directory
cd laravel-Repo
Create and configure the Database
sudo mysql -u <username> -p
create database laravel_cvms;
Install Dependencies
composer install
Generate Application Key
php artisan key:generate
Run the Database Migrations and Seeders
php artisan migrate:fresh --seed
Create a Symbolic Link to Storage
php artisan storage:link
Run the Server
php artisan serve