@extends('back.layouts.layout') @section('title','Album List') @section('content-header') Album List Dashboard Album Album List @endsection @section('content') Add Album Sl Name Data Image Status Action @foreach($albums as $album) {{ $loop->iteration }} {{ $album->name }} Order : {{ $album->order }} Featured : {{ ($album->featured == 1) ? 'Yes' : 'No' }} @if($album->image!="") @endif @if($album->status ==1)Published @else Unpublished @endif @method('DELETE') @csrf @endforeach @endsection