@extends('tenant.pos.pos-tabs') @php $activeTab = 'sections'; @endphp @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.pos') => '#', __('breadcrumb.sections') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'pos.sections']) @endsection @section('content-field')
@include('tenant.pos.sections.create')
@forelse ($sections as $section) @empty @endforelse
# @lang('pos/sections/index.branch') @lang('pos/sections/index.name') @lang('pos/sections/index.printer') @lang('general.procedures')
{{ $loop->iteration }} {{ $section->branch->name }} {{ $section->name }} {{ $section->printer ?? '---' }} @can('pos-sections-edit')
  • @endcan @can('pos-sections-delete')
  • @csrf @method('delete')
  • @endcan
    @lang('pos/sections/index.no_results')
    @foreach ($sections as $section) @can('pos-sections-edit') @include('tenant.pos.sections.edit', ['section' => $section]) @endcan @endforeach
    @endsection @push('script') @endpush