Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.36 KB

README.md

File metadata and controls

57 lines (45 loc) · 1.36 KB

Freelance app

GitHub repo size GitHub contributors GitHub Top language

About the app

A freelance web app connects freelancers and clients, simplifying job posting, bidding, project management, and payments.

Laravel Logo

Prerequisites

  • php 8
  • composer
  • laravel V9
  • mysql

Installation

1- clone project

$ git clone https://github.com/GhaithBrzig/LaravelProject

2- Install packages

$ composer install

3 -create database

$ php artisan db:create

run server

$ npm run dev
$ php artisan serve

Usefull command

1- create model with migration file

$ php artisan make:model <entite's name> -m

2- Migration

  • $ php artisan make:migration create_<table_name>_table
    
  •  $ php artisan migrate