@php use Carbon\Carbon; @endphp @extends('layouts.root') @section('styles') @endsection @section('root-content')
@csrf
@if($demandes->count() > 0) @foreach($demandes as $item) @endforeach @else @endif
Demade Actions
{{ $item->libelle }}
Secteur : {{ $item->secteur->libelle }}
Service : {{ $item->service->libelle }}
Prestation : {{ $item->prestation->libelle }}
Budget : {{ $item->budget ?? 0.00 }}
Client : {{ $item->noms . ' ' . $item->prenoms }}
Contact : {{ $item->email }}, {{ $item->phone }}
Adresse : {{ $item->adresse }}
Localisation : {{ $item->pays->libelle }}, {{ $item->province->libelle }}, {{ $item->ville->libelle }}
Planning : {{ $item->date_prestation }}, {{ $item->heure_prestation }}
Statut : {{ $item->statut }}
Description :
{!! $item->description !!}
  {{ Carbon::parse($item->created)->diffForHumans() }}
@if($item->active == 1) @else @endif
Aucun avis trouvé
{{ $demandes->links('vendor.pagination.bootstrap-4') }}

Modification Demande

@csrf @method('PUT')
NB : Maximum 1000 caracteres !
@endsection @section('scripts') @endsection