@extends('layouts.admin') @section('title', 'Account List') @section('content-header', 'Account List') @section('content')
@foreach ($branches as $branch) @if(in_array($branch->BID, $branch_access)) @endif @endforeach
BID Description Base License (RM) Percentage GTO (%) Pro-Rated Base License (RM) Status
{{ $branch->BID }} {{ $branch->Description }} {{ $branch->base_license }} {{ $branch->percentage_gto }} {{ $branch->pro_rated_base_license }} {{$branch->Actflag ? 'Active' : 'Inactive'}}
{{ $branches->render() }}
@endsection @section('js') @endsection