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