Last active
December 28, 2019 12:34
-
-
Save JoseCage/a868888a2dd0d00306cc82b6360d838d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
courses | |
- id (integer) | |
- name (string) | |
- short_description (text) | |
- description (text) | |
- price (float) | |
- course_time (string) | |
- start_at (date) | |
- end_at (date) | |
- teacher_id (integer) | |
- schedule (string) | |
- link (string) | |
- level (integer) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id (integer) | |
- name (string) | |
- description (text) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id(integer) | |
- name (string) | |
- course_id (integer) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id (integer) | |
- name (string) | |
- course_id (integer) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id (integer) | |
- first_name (string) | |
- last_name (string) | |
- email (string) | |
- phone (string) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id (integer) | |
- name (string) | |
- description (text) | |
- course_id (integer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Passos para criar as tabelas:
php artisan make:migration create_courses_table
Ou criar com o Model:
php artisan make:model Course -m