@extends('themes.backend.layouts.app') @section('dataTables') @stop @section('page_title') {{ $pageDataAtrArr['title'] }} @endsection @section('breadcrumb') {{ Breadcrumbs::render('banner.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
{{ __('banner.desktop_image_txt') }} {{ __('banner.mobile_image_txt') }} {{ __('banner.link_txt') }} {{ __('banner.link_target_txt') }} {{ __('banner.banner_group_txt') }} {{ __('location.label_txt') }} {{ __('admin.order_txt') }} {{ __('admin.status_txt') }} {{ __('admin.mdfy_date_txt') }} {{ __('admin.mdfy_by_txt') }} {{ __('admin.action_txt') }}
@if ($record->desktop_image != '') @endif @if ($record->mobile_image != '') @endif {!! !empty($record->link) ? nl2br($record->link) : '' !!} {{ !empty($record->link_target) ? $moduleAtrArr['link_target_list'][$record->link_target] : '' }} {{ $record->banner_group }} @if ($record->location != null && $record->location_id > 0) {{ $record->location->location_name }} @endif {{ !empty($record->c_order) && $record->c_order > 0 ? $record->c_order : '' }} @if ($roleRights['edit']) @else @endif {{ date($listDataAtrArr['mdfy_dt_frmt'], strtotime($record->updated_at)) }} {{ $record->updatedBy->display_name ?? $listDataAtrArr['unknown_txt'] }} @if ($roleRights['edit']) @endif
{{-- end row --}}
{{-- container-fluid --}}
{{-- page-content --}} @endsection