Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuel-oldra/cadastrodetarefas
🔵 PHP e Laravel 7
https://github.com/samuel-oldra/cadastrodetarefas
blade bootstrap eloquent laravel laravel7 migrations mvc mvc-architecture orm php sqlite
Last synced: 3 months ago
JSON representation
🔵 PHP e Laravel 7
- Host: GitHub
- URL: https://github.com/samuel-oldra/cadastrodetarefas
- Owner: samuel-oldra
- License: mit
- Created: 2021-07-22T18:01:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-20T12:15:54.000Z (7 months ago)
- Last Synced: 2024-10-11T11:06:13.879Z (3 months ago)
- Topics: blade, bootstrap, eloquent, laravel, laravel7, migrations, mvc, mvc-architecture, orm, php, sqlite
- Language: PHP
- Homepage:
- Size: 132 KB
- Stars: 16
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
Cadastro de Tarefas
Tecnologias e práticas utilizadas •
Funcionalidades •
Comandos
## Tecnologias e práticas utilizadas
- PHP 7.2
- Laravel 7.x
- SQLite
- Arquitetura MVC## Funcionalidades
- Gestão de Tarefas###
![alt text](https://raw.githubusercontent.com/samuel-oldra/CadastroDeTarefas/main/README_IMGS/lista.png)
## Comandos
### Criação do projeto
```
composer create-project laravel/laravel meu-site
```### Instalação e atualização das dependências
```
composer install
composer update
```### Geração de uma nova chave da aplicação
```
php artisan key:generate
```### Make Model, Controller e Migration
```
php artisan make:model Tarefa -mphp artisan make:controller TarefaController --resource
php artisan make:migration add_pontos_to_tarefas_table --table=tarefas
php artisan make:migration add_data_entrega_to_tarefas_table --table=tarefas
php artisan make:migration add_tempo_to_tarefas_table --table=tarefas
```### Migrations
```
php artisan migrate // cria as tabelas
php artisan migrate:refresh // recria as tabelas alteradas
php artisan migrate:fresh // recria todas as tabelas
```