@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Relatórios') {{-- styles --}} @section('page-styles') @endsection @section('content')
@csrf

Lista de Cirurgias


@foreach ($reports as $item) @endforeach
Ficha Paciente Status Cirurgião Anest. Cobrador Estab. Valor Data Cirurgia
{{ $item->id ?? '' }} {{ $item->patient->name ?? '' }} {{ $item->status ?? '' }} {{ $item->surgeon->name ?? '' }} {{ $item->anesthetist->name ?? '' }} {{ $item->receptor->name ?? '' }} {{ $item->hospital->name ?? '' }} R$ {{ $item->expected_value ?? '' }} {{ $item->date ?? '' }}
Ficha Paciente Status Cirurgião Anest. Cobrador Estab. Valor Data Cirurgia
@endsection {{-- page scripts --}} @section('page-scripts') @endsection