@extends('back.layouts.layout') @section('title','Photo List') @section('content-header') Photo List Dashboard Photo Photo List @endsection @section('content') Add Photo Sl Name Album Image Status Action @foreach($photos as $photo) {{ $loop->iteration }} {{ $photo->name }} {{ $photo->album->name }} @if($photo->image!="") @endif @if($photo->status ==1)Published @else Unpublished @endif @method('DELETE') @csrf @endforeach @endsection