@extends('layouts.app') @section('btn') @can('create', \App\Models\Analysis::class) Enregistrer une analyse @endcan @endsection @section('content')
@foreach($analyses as $analyse) @endforeach
N° Dossier Nom du Patient Paramètres Sous total Réduction Total Date Status Actions
{{$analyse->matricule}} {{optional($analyse->patient)->first_name}} {{optional($analyse->patient)->last_name}}
    @foreach($analyse->patientAnalyses as $pan)
  1. {{$pan->analyseType->name}}
  2. @endforeach
{{formatpriceth($analyse->total, getCurrency())}} -{{$analyse->rate}}%
{{formatpriceth($analyse->discount, getCurrency())}}
{{formatpriceth($analyse->total, getCurrency())}} {{$analyse->created_at->format('d-m-Y')}}
{{$analyse->created_at->format('H:m')}}
{{$analyse->process_status}} @can('view', $analyse) Détails @endcan
@endsection @section('scripts') @include('layouts.plugins.scripts.datatable') @endsection