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

Modifier Tache

@csrf

@if($tache->photo) @php $photos = is_array($tache->photo) ? $tache->photo : json_decode($tache->photo, true); @endphp @if(!empty($photos)) @foreach($photos as $photo) @if(file_exists(public_path('uploads/' . $photo))) Photo @else No Image @endif @endforeach @else No Images @endif @else No Images @endif
@endsection @section('script') @endsection