Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitorserrano/school
🏫 CRUD em PHP utilizando Laravel
https://github.com/vitorserrano/school
laravel laravel-ui php
Last synced: about 5 hours ago
JSON representation
🏫 CRUD em PHP utilizando Laravel
- Host: GitHub
- URL: https://github.com/vitorserrano/school
- Owner: vitorserrano
- Created: 2020-03-22T03:43:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:56:17.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T13:07:17.138Z (over 1 year ago)
- Topics: laravel, laravel-ui, php
- Language: PHP
- Homepage:
- Size: 1.02 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SCHOOL### :page_with_curl: Projeto
- Projeto realizado a partir de um trabalho da faculdade.### :page_with_curl: Funcionalidades
- Autenticação para Login,
- Criação de MatrĂculas, Alunos, Cursos, Instrutores e Usuários.
- Visualização de Detalhes de MatrĂculas, Alunos, Cursos e Instrutores.
- Atualização de MatrĂculas, Alunos, Cursos e Instrutores.
- Remoção de MatrĂculas, Alunos, Cursos e Instrutores.### :heavy_check_mark: Login
### :heavy_check_mark: Register
### :heavy_check_mark: Home
### :heavy_check_mark: Listagem
### :heavy_check_mark: Formulários
O Formulário é utilizado para o method create, update e show.
### :page_facing_up: Login
1. `sudo composer require laravel/ui --dev`2. `php artisan ui bootstrap`
3. `npm install && npm run dev`
4. `php artisan ui bootstrap --auth`
5. `npm install && npm run dev`
### :page_facing_up: Anotações
1. `php artisan make:controller StudentController --resource`
- Irá criar o arquivo StudentController dentro de App\Http\Controller2. `php artisan make:model Models\\ModelStudent -m `
- Este comando irá criar uma pasta "Models" e dentro um arquivo "ModelStudent"
- Também irá criar a migration com o comando `-m`3. `php artisan serve` - Executa o projeto
4. `php artisan migration` - Cria as migrations
### :x: Erro durante o desenvolvimento
- Erro ao executar "php artisan migration"
- Foi executado este comando: `sudo apt-get install php5.6-mysql/php7.2-mysql` (Linuxs)