Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 362 Bytes

README2.md

File metadata and controls

9 lines (5 loc) · 362 Bytes

php artisan make:model -mrc Chirp

This command will create three files for you:

app/Models/Chirp.php - The Eloquent model.

database/migrations/_create_chirps_table.php - The database migration that will create your database table.

app/Http/Controller/ChirpController.php - The HTTP controller that will take incoming requests and return responses.