@extends('layouts.master') @section('content') {{-- message --}} {!! Toastr::message() !!}
  • Client: {{ $customer->first_name . ' ' . $customer->last_name }}
  • Adresse: {{ $customer->address }}
  • Téléphone : {{ $customer->phone }}

Facturation

  • Date Facture : {{ $bill->date }}
  • Status Facture : {{ $bill->status }}
@if($bill->status == 'Non Payé') @endif @foreach($washing as $w) @if($bill->status == 'Non Payé') @endif @endforeach
Image Article Prix ( FCFA ) Quantité MontantActions
{{ $w->name_article }} {{ $w->amount}} {{ $w->qte }} {{ $w->montant }}
Total:
{{ $montant }} FCFA
@if($bill->status == 'Non Payé') Classer comme payer @else Réouvrir @endif
@section('script') {{-- update js --}} {{-- delete model --}} @endsection @endsection