@extends('admin.layouts.master') @section('title') {{ $data['title'] ?? '' }} @endsection @section('cpage', 'active') @php $rows = $data['rows']; @endphp @section('content')

{{ $data['title'] ?? '' }}

Manage {{ $data['title'] ?? '' }}

{{-- @if (Auth::user()->can('admin.cpage.index')) Add New @endif --}}
@foreach ($rows as $key => $row) @endforeach
Sl Page Name Published Status Updated By Action
Sl Page Name Published Status Updated By Action
{{ $loop->iteration }} {{ $row?->title }} @if ($row->is_active == 1) Published @else Unpublished @endif {{ $row?->updatedByAdmin?->name }} on {{ now()->parse($row?->updated_by)->format('d-m-Y h:i:s a') }} {{-- @if (Auth::user()->can('admin.cpage.view')) View @endif @if (Auth::user()->can('admin.cpage.edit')) Edit @endif --}} {{-- @if (Auth::user()->can('admin.cpage.delete')) Delete @endif --}}
@endsection