@extends('themes.backend.layouts.app') @section('dataTables') @stop @section('page_title') {{ $pageDataAtrArr['title'] }} @endsection @section('breadcrumb') {{ Breadcrumbs::render('template.index') }} @endsection @section('content')
{{-- Module Title and Breadcrumb --}} @include('themes.backend.partials.module_title_breadcrumb', [ 'module_name' => $pageDataAtrArr['module_name'], ])
{{-- Page Title --}} @include('themes.backend.partials.page_title', [ 'title' => $pageDataAtrArr['title'], ])
@if ($roleRights['add']) @endif @if ($roleRights['delete'] && count($dataListModel) > 0) @endif
{{ csrf_field() }} @if ($roleRights['delete'] && count($dataListModel) > 0) @endif @if (count($dataListModel) > 0) @foreach ($dataListModel as $key => $record) @if ($roleRights['delete']) @endif @endforeach @endif
{{ __('customfield.template.name_txt') }} {{ __('customfield.template.blade_file_txt') }} {{ __('customfield.template.route_path_txt') }} {{ __('customfield.template.controller_name_txt') }} {{ __('customfield.template.controller_logic_txt') }} {{ __('customfield.template.module_id_txt') }} {{ __('customfield.template.device_type_txt') }} {{ __('customfield.template.location_specific_txt') }} {{ __('admin.status_txt') }} {{ __('admin.mdfy_date_txt') }} {{ __('admin.mdfy_by_txt') }}
@if ($roleRights['edit']) {{ $record->name }} @else {{ $record->name }} @endif {{ $record->blade_file }} {{ $record->route_path }} {{ $record->controller_name }} {{ $record->controller_logic }} @if ($record->module != null && $record->module_id > 0) {{ $record->module->label }} @endif {{ $record->device_type }} {{ $record->location_specific }} @if ($roleRights['edit']) @else @endif {{ date($listDataAtrArr['mdfy_dt_frmt'], strtotime($record->updated_at)) }} {{ $record->updatedBy->display_name ?? $listDataAtrArr['unknown_txt'] }}
{{-- end row --}}
{{-- container-fluid --}}
{{-- page-content --}} @endsection