@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content')
{{ $data['p_heading'] }}
@if(sizeof($data['flyers']) > 0)

{{ $data['p_description'] }}

@foreach($data['flyers'] as $row) @endforeach
ID Flyer Name Status Actions
{{ $row->id }} {{ $row->name }} @if($row->status == 'Y') Active @else In-active @endif
@method('DELETE') @csrf
@else Sorry!, no flyers found. @endif
@stop