@extends('agentportal.layouts.layout') @section('title', 'IMTO Max Credit') @section('page_style')
@endsection
@section('content')
{{ __('message_lang.LBL_IMTO_BALANCIES') }} - {{ __('message_lang.LBL_MAX_CREDIT_LIMIT') }}
@csrf
{!! trans('message_lang.LBL_PARTNER') !!}
{!! trans('message_lang.PLACEHOLDER_SELECT') !!}
@foreach ($partners as $key => $partner)
partner_id == $partner->id ? 'selected' : '' !!}> {{ $partner->name }}
@endforeach
{!! trans('message_lang.BTN_SEARCH') !!}
{!! trans('message_lang.BTN_CLEAR_SEARCH') !!}
@if ($imto)
{!! trans('message_lang.DATATABLE_LBL_SHOW') !!}
has('per_page') && $request->per_page == '50' ? 'selected' : '' !!}>50
has('per_page') && $request->per_page == '100' ? 'selected' : '' !!}>100
has('per_page') && $request->per_page == $imto->total() ? 'selected' : '' !!}>All
{!! trans('message_lang.DATATABLE_LBL_ENTRIES') !!}
@endif
@csrf
@forelse ($imto as $key => $imt) @empty @endforelse
#
{{ __('message_lang.LBL_PARTNER') }}
{{ __('message_lang.LBL_MAX_CREDIT_LIMIT') }} (USD)
{{ __('message_lang.LBL_ENABLE_MAX_CREDIT_LIMIT') }}
{!! $key + 1 !!}
{!! $imt->name !!}
({{ __('message_lang.LBL_BALANCE') }}: {!! number_format($imt->balance, 2) !!} USD)
{!! trans("message_lang.LBL_MAX_CREDIT_LIMIT") !!}
@error('max_credit_limit_' . $imt->id)
{{ $message }}
@enderror @if ($imt->max_cl_created_by_id)
{!! __('message_lang.LBL_CREATED_BY') !!}
: {{ $imt->create_username }} > {{ $imt->create_first_name }} {{ $imt->create_last_name }}
@endif @if ($imt->max_cl_updated_by_id)
{!! __('message_lang.LBL_LAST_UPDATE') !!}
: {{ $imt->update_username }} > {{ $imt->update_first_name }} {{ $imt->update_last_name }}
@endif
id, $imt->enable_max_credit_limit) == true) checked @endif>
{!! trans('message_lang.DATATABLE_LBL_NO_DATA_AVAILABLE') !!}
@if ($imto)
{{ __('message_lang.BTN_SUBMIT') }}
{{ __('message_lang.BUTTON_CANCEL') }}
@endif
@endsection @section("page_vendors") @endsection @section('page_script') @endsection