Projet de blog Laravael

composer create-project laravel/laravel blog
composer require laravel/ui
php artisan ui bootstrap --auth
npm install & npm run dev
php artisan make:model Category --all
category route, cat views, CRUD, dbseeding
php artisan make:model Post --all
post| category(one to many, one to one inverse)
Photo( one to many)
Tag (Many to Many)
user -> photo,cat->photo( has many through)
WinMaw