Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/milenavms/teste-vendas
CRUD - usuários (vendedores) e controle de venda - Laravel 5.8.*/MySQL/ PHP 7.3.8/Bootstrap
https://github.com/milenavms/teste-vendas
crud laravel mysql php
Last synced: about 6 hours ago
JSON representation
CRUD - usuários (vendedores) e controle de venda - Laravel 5.8.*/MySQL/ PHP 7.3.8/Bootstrap
- Host: GitHub
- URL: https://github.com/milenavms/teste-vendas
- Owner: milenavms
- Created: 2019-10-07T19:56:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T00:34:52.000Z (over 2 years ago)
- Last Synced: 2023-04-10T00:25:41.587Z (over 1 year ago)
- Topics: crud, laravel, mysql, php
- Language: PHP
- Homepage: http://agile-tundra-48002.herokuapp.com/
- Size: 370 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Laravel-sistema-de-controle-de-produtos
![php-image]
![l-image][sistema-controle-produto](http://agile-tundra-48002.herokuapp.com/)
![vendas](https://user-images.githubusercontent.com/47642347/87829178-7721e080-c84c-11ea-9b46-358ced1d5863.gif)
### Sobre
*Sistema de cadastro de produtos, usuários (vendedores) e controle de venda.*
### Instalação
1. Clone repositório
2. Mude para o diretório
3. Instalar dependências
```
composer install
```
4. Update do composer
```
composer update
```
5. Renomei o arquivo .env.exemple para .env6. Gerando a chave para a aplicação
```
php artisan key:generate
```
7. Subir servidor
```
php artisan serve
```
Obs:
Em Teste-Vendas/app/Providers/AppServiceProvider.php
Comente o seguinte trecho:
```
if (env('APP_ENV') !== 'production') {
URL::forceScheme('https');
}
```#### Erro
Se ocorrer o erro:
```
[Tue Oct 1 15:38:53 2019] PHP Fatal error: Unknown: Failed opening required 'C:\Users\Evelym\Documents\Milena-2019\LARAVEL-minhas aplicacoes\controle-serie-site-alura\server.php' (include_path='.;C:\php\pear') in Unknown on line 0
```
Crie um arquivo server.php com o seguinte conteúdo:
```*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
```[php-image]:https://img.shields.io/badge/php-v7.3.8-blue
[l-image]:https://img.shields.io/badge/laravel-v5.8.*-orange