@extends('admin.layout') @section('title') Gestion des Matériels @endsection @section('content')
| 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)))
@break
@endif
@endforeach
@else
@endif
@else
@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 |