@extends('admin.layout') @section('title') Modifier Materiel @endsection @section('content')

Modifier Materiel

@csrf
@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 @else No Image @endif @endforeach @endif @else No Images @endif
@endsection @section('script') @endsection