Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 24 hours ago
JSON representation

🔵 PHP e Laravel 7

Awesome Lists containing this project

README

        


Cadastro de Tarefas



Tecnologias e práticas utilizadas •
Funcionalidades •
Comandos







Total Downloads
Latest Stable Version
License

## 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 -m

php 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
```