12 lines
407 B
PHP
12 lines
407 B
PHP
@extends('portal::layouts.supplier')
|
|
@section('title', __('lang_v1.ledger'))
|
|
@section('content')
|
|
@include('portal::partials.crm_ledger', [
|
|
'contact' => $contact,
|
|
'ledger_url' => action([\Modules\Portal\Http\Controllers\Supplier\LedgerController::class, 'getLedger']),
|
|
])
|
|
@endsection
|
|
@section('javascript')
|
|
<script src="{{ asset('modules/portal/js/ledger.js?v=' . $asset_v) }}"></script>
|
|
@endsection
|