@extends('layouts.business.master') @section('title') {{ $party->type === 'Supplier' ? __('Advance Pay') : __('Advance Collect') }} @endsection @section('main_content')

{{ $party->type === 'Supplier' ? __('Advance Pay') : __('Advance Collect') }}

@csrf
@include('business::component.payment_type', ['context' => $party->type === 'Supplier' ? 'advance_pay' : 'advance_collect', 'payment_types' => $payment_types])
@endsection