Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thecodeholic/laravel11-crash-course
The source code for YouTube Tutorial, Laravel 11 Crash Course
https://github.com/thecodeholic/laravel11-crash-course
laravel laravel-framework laravel11 php
Last synced: 24 days ago
JSON representation
The source code for YouTube Tutorial, Laravel 11 Crash Course
- Host: GitHub
- URL: https://github.com/thecodeholic/laravel11-crash-course
- Owner: thecodeholic
- Created: 2024-02-05T18:21:04.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-03-10T18:20:34.000Z (10 months ago)
- Last Synced: 2024-11-05T21:49:19.506Z (2 months ago)
- Topics: laravel, laravel-framework, laravel11, php
- Language: PHP
- Homepage: https://youtu.be/eUNWzJUvkCA
- Size: 162 KB
- Stars: 47
- Watchers: 2
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Source Code for [Laravel 11 Crash Course](https://youtu.be/eUNWzJUvkCA)
A simple personal notes manager application, inside which can register, login and create personal notes.
## Installation
1. Clone the project
2. Navigate to the project's root directory using terminal
3. Create `.env` file - `cp .env.example .env`
4. Execute `composer install`
5. Execute `npm install`
6. Set application key - `php artisan key:generate --ansi`
7. Execute migrations and seed data - `php artisan migrate --seed`
8. Start vite server - `npm run dev`
9. Start Artisan server - `php artisan serve`