0% found this document useful (0 votes)
380 views2 pages

Diagrama MVC Laravel

The document discusses the basic structure and workflow of a Laravel application. It shows the routing, view, controller, model, migration, and seeding files that make up a Laravel app. Commands are provided to generate controllers with resources, models with migrations, and seeders to populate database tables.

Uploaded by

J Sau Sauaia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
380 views2 pages

Diagrama MVC Laravel

The document discusses the basic structure and workflow of a Laravel application. It shows the routing, view, controller, model, migration, and seeding files that make up a Laravel app. Commands are provided to generate controllers with resources, models with migrations, and seeders to populate database tables.

Uploaded by

J Sau Sauaia
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Aplicação Laravel – Chamadas do usuário

Routing ~/code/hackerpair/routes
--web.php
--api.php
--channels.php
--console.php

View Controller
php artisan make:controller ModelNameController --resource
~/code/hackerpair/resources/views
~/code/hackerpair/app/Http/Controllers

php artisan make:seed ModelNameTableSeeder

Model ~/code/hackerpair/database/migrations

php artisan db:seed --class=ModelNameTableSeeder


~/code/hackerpair/database/seeds
php artisan make:model ModelName --migration

~/code/hackerpair/app
~/code/hackerpair/database/migrations

You might also like