Skip to content

shuvomohajan/office-meal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Work Flow

Resources

See the database schema from here for better understanding.

TODO List

  • Catering module
  • Catering payment module
  • Meal module
  • Meal routine module
  • User module
  • User payment module
  • User meal module
  • Manager module
  • Dashboard analytics

Laravel Application Setup Guide

Prerequisites

Before you begin, make sure you have the following installed on your system:

  • Composer
  • PHP (8.2 or higher)
  • Node.js (14.x or higher)
  • Web server (e.g., Apache or Nginx)

Step 1: Clone the Repository

  1. Open your terminal or command prompt.

  2. Navigate to the directory where you want to store your Laravel application.

  3. Run the following command to clone the repository:

git clone https://github.com/shuvomohajan/office-meal.git
  1. Navigate into the project's root directory:
cd office-meal

Step 2: Install Dependencies

  1. Run the following command to install the project dependencies using Composer:
composer install
  1. Run the following command to install the JavaScript dependencies:
pnpm install
or
yarn install

Step 3: Environment Configuration

  1. Create a copy of the .env.example file and name it .env:
cp .env.example .env
  1. Generate a new application key by running the following command:
php artisan key:generate

Step 4: Database Setup

  1. Run the following command to migrate the database tables:
php artisan migrate --seed

Step 5: Serve the Application

  1. Run the following command to build your assets using Vite:
pnpm dev
or
yarn run dev
  1. Use the following command to start the Laravel development server:
php artisan serve

if you using laragon or laravel valet? then you don't have to start development server. just goto the respected url which is provided by laragon or laravel valet.

  1. Open your web browser and visit http://localhost:8000 to see your Laravel application running.

Conclusion You have successfully set up your Laravel application! Now you can start building your web application using the powerful features and tools provided by Laravel. Happy coding!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages