@extends("admin.template.layout")
@section("header")
@stop
@section("content")
@if ( GetUserPermissions("cms_pages_create") )
@endif
| # |
Title |
User Type |
Status |
Created At |
Actions |
@foreach ($cms_pages as $key => $policy)
| {{ $key +1 }} |
{{ $policy->title_en }} |
{{ $policy->user_type == 1 ? 'Vendor' : 'Customer' }} |
{{ $policy->status == 1 ? "Active" : "In Active" }} |
{{ date('d-m-Y ',strtotime($policy->created_at)) }} |
|
@endforeach
@stop
@section("script")
@stop