@extends('Admin.master_layout.master') @section('title', getTitleInPage()) @section('header_menu') @parent @endsection @section('sidebar_menu') @parent @endsection @section('content')

{{ getTitleInPage() }}

@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif
@if(count($agentsTypeObj) > 0)
@endif
{{ getTitleInPage() }} - List
Add
@foreach($SupplierType as $datas) @endforeach
No. Merchant Type Rep/Agent type Tax Registration Type Pan Nom GST No. Account Group Ledger type Status Actions
{{ $i }} {{ getTypeOfMerchanteName($datas['merchant_type_id']) }} {{ getAgentsType($datas['agent_type_id']) }} {{ $datas['name'] }} @if($datas['is_pancard'] == 1) Yes @else No @endif @if($datas['is_gst'] == 1) Yes @else No @endif {{ getAccountGroup($datas['account_group_id']) }} @if($datas['ledger_type'] == 3) Common @elseif($datas['ledger_type'] == 2) Separate @else None @endif {{ ($datas['status'] == 0 )? 'Inactive':'Active'}}
@endsection @section('footer') @parent @endsection @section('extraa_script_and_js') @parent @endsection