Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/laratipsofficial/laravel-basics
- Owner: Laratipsofficial
- License: mit
- Created: 2020-10-05T06:10:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-25T17:41:46.000Z (about 4 years ago)
- Last Synced: 2024-10-11T11:21:35.731Z (3 months ago)
- Topics: laravel, laravel-framework, laravel8, video
- Language: PHP
- Homepage: https://www.youtube.com/playlist?list=PL2DahmvUpeutUtHy8OvaytrxQhM8qbtaN
- Size: 1.27 MB
- Stars: 14
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.gitcd laravel-basics
composer install
cp .env.example .env
php artisan key:generate
php artisan serve
```