@extends('tenant.pos.pos-tabs') @php $activeTab = 'tables-and-sections'; $subTab = 'sections'; @endphp @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.pos') => '#', __('breadcrumb.tables') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'pos.tables-and-sections']) @endsection @section('content-field')

@lang('pos/tables-and-sections.tables_and_sections')

@can('pos-tablesSections-add') @include('tenant.pos.tables-sections.create', ['branches' => $branches]) @endcan
@lang('pos/tables-sections/index.sections_list')
@forelse ($sections as $section) @empty @endforelse
# @lang('pos/tables-sections/index.branch') @lang('pos/tables-sections/index.section_name') @lang('pos/tables-sections/index.description') @lang('general.procedures')
{{ $loop->iteration }} {{ $section->branches->name }} {{ $section->name }} {{ $section->description ?? '---' }} @can('pos-tablesSections-edit')
  • @endcan @can('pos-tablesSections-delete')
  • @csrf @method('delete')
  • @endcan
    @lang('pos/tables-sections/index.no_sections_yet')
    @foreach ($sections as $section) @include('tenant.pos.tables-sections.edit', ['section' => $section, 'branches' => $branches]) @endforeach
    @endsection @push('script') @endpush