@extends('admin.layout') @section('title') Gestion des Matériels @endsection @section('content')

Gestion des Matériels


@foreach($materiels as $materiel) @if($materiel->status == 'disponible') @endif @endforeach
Image Référence Matériel Prix d'achat 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 @if($materiel->reference) {{ $materiel->reference ?? '' }} @else Aucun @endif {{ $materiel->materiel ?? '' }} € {{ $materiel->prix_achat ?? '' }} @if($materiel->status == 'disponible') {{ $materiel->status ?? '' }} @else {{ $materiel->status ?? '' }} @endif Modifier Supprimer
@endsection @section('script') @endsection