@extends('layouts.app') @section('btn') @endsection @section('content')
Liste des analyse archivés:
@foreach($analyses as $analyse) @endforeach
Matricule Nom du Patient Analyses Sous total Réduction Total Date Status Actions
{{$analyse->matricule}} {{$analyse->patient->first_name}} {{$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')}}
@if($analyse->status == "pending") En attente @endif Restaurer
@endsection @section('scripts') @include('layouts.plugins.scripts.datatable') @endsection