@extends('layouts.blank')
@push('stylesheets')
@endpush
@push('inline-scripts')
@if(isset($countriesSelection))
let countriesSelection = null;
@else
let countriesSelection = [];
@endif
@if(isset($branchGroupingsSelectionList))
let branchGroupingsSelectionList = null;
@else
let branchGroupingsSelectionList = [];
@endif
@if(isset($companiesSelection))
let companiesSelection = null;
@else
let companiesSelection = [];
@endif
@endpush
@push('scripts')
@endpush
@section('main_container')
@include('modals.branch')
@include('includes/notifications')
{{--Branch Groupings--}}
| Abbreviation |
Group |
Action |
@if(count($branchGroupings) > 0)
@foreach($branchGroupings as $branchGrouping)
| {{ $branchGrouping->abbreviation }} |
{{ $branchGrouping->name }} |
|
@endforeach
@endif
| Company |
Branch |
Group |
Action |
@if(count($branches) > 0)
@foreach($branches as $branch)
| {{ $branch->company_code . ' - ' . $branch->company }} |
{{ $branch->branch_code . ' - ' . $branch->branch }} |
{{ $branch->group }} |
|
@endforeach
@else
@endif
@endsection