Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/laratipsofficial/laravel-basics

This repo is based on youtube playlists. Laravel Basics and Laravel Advanced
https://github.com/laratipsofficial/laravel-basics

laravel laravel-framework laravel8 video

Last synced: 3 months ago
JSON representation

This repo is based on youtube playlists. Laravel Basics and Laravel Advanced

Awesome Lists containing this project

README

        

# Laravel Basics

## Introduction

Every Video in the [YouTube playlist](https://www.youtube.com/watch?v=Hzma7qHnAfI&list=PL2DahmvUpeutUtHy8OvaytrxQhM8qbtaN) has its own branch. The master branch always contains the latest code.

If you want to look at the code of the ["Laravel 8 - Validation"](https://www.youtube.com/watch?v=34tBHVVgXt0) video, then checkout to that branch specific for that video and you will be able to see all the codes there. E.g.

```sh
git checkout validation
```

## Installation

Run the following commands to install the project and get started

```sh
git clone https://github.com/Laratipsofficial/laravel-basics.git

cd laravel-basics

composer install

cp .env.example .env

php artisan key:generate

php artisan serve
```