diff --git a/src/banco.sql b/src/banco.sql index 08a6596..08876b5 100644 --- a/src/banco.sql +++ b/src/banco.sql @@ -134,13 +134,13 @@ CREATE TABLE `carga_horarias` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -DROP TABLE IF EXISTS `consultas`; -CREATE TABLE `consultas` ( +CREATE TABLE IF NOT EXISTS `consultas` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `horario` datetime NOT NULL, `obs` text COLLATE utf8mb4_unicode_ci, `status` enum('Primeira','Retorno','Nova') COLLATE utf8mb4_unicode_ci NOT NULL, `medico_id` int(10) unsigned NOT NULL, + `valor` decimal(8,2) DEFAULT NULL, `paciente_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, diff --git a/src/resources/views/medicos/dia.blade.php b/src/resources/views/medicos/dia.blade.php index aea122d..0a53000 100644 --- a/src/resources/views/medicos/dia.blade.php +++ b/src/resources/views/medicos/dia.blade.php @@ -7,6 +7,7 @@ @section('conteudo') +

@if(session('msg')) @@ -43,6 +44,8 @@ {{ Form::close() }} + +

Olá {{ auth()->user()->nome }}, aqui estão suas consultas entre {{ $inicio->format('d/m/Y á\s H:i') }} e {{ $fim->format('d/m/Y á\s H:i') }} {{ date('d/m/Y á\s H:i', strtotime($consulta->horario)) }} - {{ $consulta->paciente->nome }} | - {{ Saudacoes::idade($consulta->paciente->nascimento) }} ano(s) + {{ Saudacoes::idade($consulta->paciente->nascimento) }} ano(s) | + R${{ $consulta->valor }}

@@ -77,7 +81,8 @@ {{ date('d/m/Y á\s H:i', strtotime($consulta->horario)) }} - {{ $consulta->paciente->nome }} | - {{ Saudacoes::idade($consulta->paciente->nascimento) }} ano(s) + {{ Saudacoes::idade($consulta->paciente->nascimento) }} ano(s) | + R${{ $consulta->valor }}
@@ -89,7 +94,24 @@ @endif
- + + + @endsection \ No newline at end of file