Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 920 Bytes

readme.md

File metadata and controls

48 lines (42 loc) · 920 Bytes

Laravel Starter Tempelate

This starter template is perfect for starting a new laravel project.

This consists of following features :

  • Based on bootstrap 4
  • Auth Scaffolding
  • Email Verification on registration
  • Integrated admin panel template
  • Noty for notifications on frontend
  • Passport Setup for api auth
  • VueX setup
  • MediaLibrary (Spatie/MediaLibrary) for image and video uploads

Steps to install

  1. clone this repository:
git clone https://github.com/riteshsingh1/laravel-starter.git
  1. copy .env.example to .env
cp .env.example .env
  1. install dependencies
composer install
  1. genereate encryption key
php artisan key:generate
  1. create database and update in .env

  2. run migrations

php artisan migrate
  1. generate keys for passport
php artisan passport:install
  1. For File Uploads
 php artisan storage:link
  1. run in broswer and enjoy !!!