@extends('layouts.app', ['dashBoardTitle' => 'COMPANIES']) @section('content')
@if (session('status'))
{{ session('status') }}
@endif @if (session('message'))
{{ session('message') }}
@endif
@if ($limit != 0) Create Company @else Create Company @endif Show all Combination Tax Group
@if (isset($list))
@if (count($list) > 0) @foreach (@$list as $index => $company) @endforeach @else @endif
S.No.
{{ trans('Company Name') }} {{ trans('Action') }}
{{ $loop->iteration + ($list->perPage() * ($list->currentPage() - 1)) }}
{{ $company->taxpayer }} Go To Dashboard @if (CtaxUser::hasRole('superadmin') || CtaxUser::hasRole('admin')) @endif
No data found!
@endif
{{ $list->links() }}

Combine Company List

@foreach ($combine_company_list as $combine_company) @endforeach
S.No. Company Name Action
{{ $loop->iteration }} {{ $combine_company->group_company_list($combine_company) }} Go To Dashboard @if (CtaxUser::hasRole('superadmin') || CtaxUser::hasRole('admin')) @endif

Group Company List

@foreach ($group_company_list as $group_company) @endforeach
S.No. Company Name Action
{{ $loop->iteration }} {{ $group_company->group_company_list($group_company) }} Go To Dashboard @if (CtaxUser::hasRole('superadmin') || CtaxUser::hasRole('admin')) @endif
@endsection