@extends('admin.admin_master') @section('content-header', $page_header) @section('content')
@if(!empty($list)) @foreach ($list as $item) @endforeach @else @endif
S.No Title Title Nepali Status Action
{{ $count++ }} {{ Str::limit($item->title_en, 60) }} {{ Str::limit($item->title_np, 60) }} @if ($item->status == '1') {!! ACTIVE_STATUS !!} @else {!! INACTIVE_STATUS !!} @endif {!! EDIT_ICON !!} | {!! DELETE_ICON !!}
{!! NO_RECORD !!}
@endsection