@extends('admin.master_layout')
@section('title')
{{__('admin.Custom Page')}}
@endsection
@section('admin-content')
{{__('admin.Add New')}}
{{__('admin.SN')}} |
{{__('admin.Name')}} |
{{__('admin.Status')}} |
{{__('admin.Action')}} |
@foreach ($custom_pages as $index => $custom_page)
{{ ++$index }} |
{{ $custom_page->translate->page_name }} |
@if($custom_page->status == 1)
{{__('admin.Active')}}
@else
{{__('admin.Inactive')}}
@endif
|
|
@endforeach
@endsection