@extends('employee.layout') @section('title') Demander des Matériels @endsection @section('content')

Demander des Matériels

@foreach($materiels as $materiel) @endforeach
Image Référence Matériel Status Action
{{ $i++ }} @if($materiel->photo) @php $photos = json_decode($materiel->photo); @endphp @if(!empty($photos)) @foreach($photos as $photo) @if(file_exists(public_path('uploads/' . $photo))) Photo @break @else No Image @break @endif @endforeach @else No Image @endif @else No Image @endif {{ $materiel->reference ?? 'Aucun' }} {{ $materiel->materiel }} @if($materiel->status == 'disponible') Disponible @else Non Disponible @endif
@endsection @section('script') @endsection