@extends('admin.admin_master') @section('content-header', $page_header) @section('content')
@foreach ($list as $item) @endforeach
S.No Ttile Description Status Action
{{ $count++ }} {{ $item->title }} {{ $item->description }} @if ($item->status == '1') {!! ACTIVE_STATUS !!} @else {!! INACTIVE_STATUS !!} @endif {!! EDIT_ICON !!}   |   {!! DELETE_ICON !!}
{{ csrf_field() }} {{ method_field('PATCH') }}
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection