芝麻web文件管理V1.00
编辑当前文件:/home/lekhnath/silverray.com.au/oldsite/Modules/CustomPage/resources/views/index.blade.php
@extends('admin.master_layout') @section('title')
{{ __('Custom Page') }}
@endsection @section('admin-content')
{{-- Search filter --}}
{{ __('SN') }}
{{ __('Page Name') }}
{{ __('Status') }}
{{ __('Action') }}
@forelse ($custom_pages as $custom_page)
{{ $loop->index + 1 }}
{{ $custom_page->page_name }}
status == 'enable' ? 'checked' : '' }} data-toggle="toggle" data-on="{{ __('Active') }}" data-off="{{ __('Inactive') }}" data-onstyle="success" data-offstyle="danger">
@empty
@endforelse
@if (request()->get('par-page') !== 'all')
{{ $custom_pages->onEachSide(3)->onEachSide(3)->links() }}
@endif
@endsection @push('js') @endpush