@extends('layouts.admin') @section('title', 'Branch List') @section('content-header', 'Branch List') @section('content-actions') Add Branch @endsection @section('content')
@foreach ($branches as $branch) @if(in_array($branch->BID, $branch_access)) @endif @endforeach
BID Description Address Postcode City State Telephone Number Fax Number Company Registration Number SST ID Status Action
{{$branch->BID}} {{$branch->Description}} {{$branch->Address1}} {{$branch->Address2}} {{$branch->Postcode}} {{$branch->City}} {{$branch->State}} {{$branch->Tel}} {{$branch->Fax1}} {{$branch->coreg}} {{$branch->gst_code}} {{$branch->Actflag ? 'Active' : 'Inactive'}} {{-- --}}
{{ $branches->render() }}
@endsection @section('js') @endsection