@extends('back.layouts.layout') @section('title','Photo List') @section('content-header')

Photo List

@endsection @section('content')
@foreach($photos as $photo) @endforeach
Sl Name Album Image Status Action
{{ $loop->iteration }} {{ $photo->name }} {{ $photo->album->name }} @if($photo->image!="") @endif
@method('DELETE') @csrf
@endsection