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

{{ $data['p_description'] }}

@foreach($data['result'] as $row) @endforeach
ID Name Actions
{{ $row->id }} {{ $row->name }} @if($row->id != 1)
@method('DELETE') @csrf
@endif
@else Sorry!, no sets found. @endif
@stop