Skip to content

A personal repo where I'll upload code that I write while learning laravel

License

Notifications You must be signed in to change notification settings

lanoow/learning-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

Learning Laravel

All of the knowledge has been gained from this Tutorial -> The best tutorial ever!

Preparation

  1. Choose an IDE to code in, I personally like Visual Studio Code
    1. Configure it to your preference
    2. If you're using VS Code, make sure to download this extension (Laravel Extension Pack), it provides all top tier extensions for Laravel
  2. Download & install PHP 8

Installation

I personally chose to install Laravel with Composer because I think it's the best choice for me

$ composer create-project laravel/laravel example-app
$ cd example-app
$ php artisan serve

But I also installed and the Laravel Installer just in case I need it

$ composer global require laravel/installer
$ laravel new example-app
$ cd example-app
$ php artisan serve	

If you want to install my repo do this:

$ git clone https://github.com/lanoow/learning-laravel
$ composer install
$ cd learning-laravel/
; Make sure to link your MySQL Database
$ php artisan migrate:fresh
$ php artisan serve

Note: I didn't include .env so make sure to create a .env file from the .env.example file.

Keeping track of the Tutorial

Day 1

Watched all videos from Section 1

Day 2

Part 1 -> Watched all videos from Section 2 & 3

Part 2 -> Watched all videos from Section 4

Day 3

Watched all videos from Section 5 & 6

Day 4

Watched all videos from Section 7 & 8

Day 5

Watched all videos from Section 9 Watched videos 52-54 from Section 10

Day 6

Watched all remaining videos from Section 10

Day 7

Watched all videos from Section 11

Day 8

Watched videos 62-66 from Section 12

Day 9

Watched video 67 from Section 12

Day 10

Watched all videos remaining from Section 12 & Section 13

About

A personal repo where I'll upload code that I write while learning laravel

Resources

License

Stars

Watchers

Forks