Skip to content

This repository contains the source code of my 6.5 hours "Laravel for beginners" YouTube tutorial

Notifications You must be signed in to change notification settings

rennyrpm/laravel8-for-beginners

 
 

Repository files navigation

Laravel 8 For Beginners

This repository is linked to this youtube video where I’ll be going over all topics that you need to know in order to become a Laravel Developer.

• Author: Code With Dary
• Twitter: @codewithdary
• Instagram: @codewithdary

Requirements

• PHP 7.3 or higher
• Node 12.13.0 or higher

Usage

Setting up your development environment on your local machine:

git clone git@github.com:codewithdary/laravel8-for-beginners.git
cd laravel8-for-beginners
cp .env.example .env
composer install
php artisan key:generate
php artisan cache:clear && php artisan config:clear
php artisan serve

Before starting

Create a database

mysql
create database cars;
exit;

Setup your database credentials in the .env file

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=cars
DB_USERNAME={USERNAME}
DB_PASSWORD={PASSWORD}

Migrate the tables

php artisan migrate

Credits due where credits due…

Thanks to Laravel for giving me the opportunity to make this tutorial. I would also like to thank the Tailwind developers for giving us an incredible CSS framework which made my life as a content creator, a lot easier.

About

This repository contains the source code of my 6.5 hours "Laravel for beginners" YouTube tutorial

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 74.6%
  • Blade 24.8%
  • Shell 0.6%