@extends('layouts.app') @php $moduleName = __('lang.documentation_charges'); $createItemName = ucfirst($action) . $moduleName; $breadcrumbMainName = $moduleName; $breadcrumbCurrentName = " ".ucfirst($action); $breadcrumbMainIcon = "fas fa-user-graduate"; $breadcrumbCurrentIcon = "add_box"; $ModelName = 'App\Models\SellDocumentationCharge'; $ParentRouteName = 'documentation_charges'; $submit_button_text = __('lang.save'); $form_route = route("$ParentRouteName.store",['sells_id'=>$sell->id]); if($action == 'edit'){ $form_route = route("$ParentRouteName.update",['sells_id'=>$sell->id]); $submit_button_text = __('lang.update'); } @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.documentation_charges')}} ( {{ $sell->branch->name ?? '-' }} || {{ $sell->customer->name ?? '-' }} || {{ ($sell->registration_no) ?? '-' }} || {{ ($sell->product->flat_size).' '. $sell->product->size_in ?? '-' }} ) $sell->id]) }}">{{__('lang.back')}} home {{__('lang.home')}} {{__('lang.sale')}} $sell->id]) }}">schedule{{__('lang.documentation_charges')}} {{$breadcrumbCurrentIcon}} {{ ucfirst($action) }} @csrf @php $system_settings = \App\Models\Setting::systemBuilder(); $enable_term_wise = $system_settings->allowed_entity->schedule->documentation_charges_transactions_term_wise ?? 0; @endphp @include('admin.schedule-manage.receivable-schedule.partial.documentation_terms',['enable_term_wise'=>$enable_term_wise]) @if(!$enable_term_wise) {{__('lang.total_discount')}} {{$transaction->systemSettingCurrency()}} @endif @if(!$enable_term_wise) {{$currency_symbol}} @endif {{__('lang.total')}} {{$transaction->systemSettingCurrency()}} {{$currency_symbol}} {{__('lang.back')}} @stop @push('include-css') @endpush @push('include-js') @endpush