@extends('layouts.app') @section('title', 'Locations materiel') @section('content')
Suivi des locations en cours et terminees
| Location | Equipement | Client | Periode | Statut | Montant | Action |
|---|---|---|---|---|---|---|
| {{ $rental->rental_number ?: ('LOC-' . $rental->id) }} | {{ optional($rental->equipment)->name ?? 'Equipement supprime' }} | {{ optional(optional($rental->client)->user)->name ?? 'Client inconnu' }} | {{ optional($rental->start_date)->format('d/m/Y') ?: '-' }} - {{ optional($rental->end_date)->format('d/m/Y') ?: '-' }} |
{{ $rental->formatted_status }}
{{ $rental->formatted_payment_status }}
|
{{ number_format((float) ($rental->final_amount ?? $rental->total_amount ?? 0), 2) }}€ | Ouvrir |
| Aucune location trouvee. | ||||||