@extends('layouts.admin') @section('title', 'Devis') @section('page_title', 'Gestion des devis') @section('content') @if($devis->count())
@foreach($devis as $d) @endforeach
IDClientProduitDateStatutPDF
#{{ $d->id }} {{ $d->name }} @if($d->company)
{{ $d->company }}@endif
{{ $d->email }}
{{ $d->product ?? '-' }} {{ \Carbon\Carbon::parse($d->created_at)->format('d/m/Y H:i') }}
@csrf
PDF
@else

Aucun devis reçu

@endif @endsection