Tutorials, Links
- https://kinsta.com/blog/laravel-tutorial/#6-best-free-laravel-tutorial-sites
- https://laravel-news.com/
- https://laravel-news.com/learning-laravel-in-2021
- https://laravel.com/docs/8.x
- https://www.tutsmake.com/category/laravel-tutorial/
- https://www.tutsmake.com/laravel-interview-questions-answers-for-1235-year-experience/
- https://www.larashout.com/
- https://learn2torials.com/category/laravel
- https://eloquentbyexample.com/
- https://laravel.com/docs/8.x/eloquent#introduction
Erste Schritte
Erstellen einer ersten Anwendung
laravel new 01_Erstellen-einer-ersten-Anwendung --jet cd 01_Erstellen-einer-ersten-Anwendung
Datenbankkonfiguraton anpassen in der Datei .env
composer update php artisan key:generate php artisan migrate
Livewire Komponenten hinzufügen
php artisan vendor:publish --tag=jetstream-views
Frontend erstellen
npm install npm run dev
php artisan serve