@extends('layouts.app') {{-- Important Variables --}} @php $moduleName = ' '.__('lang.receipt_voucher'); $ModelName = 'App\Models\ActualReceived'; $ParentRouteName = 'schedule_general_receipt'; // Donot Delete these variables if not necessary $formActionRoute = ""; $submitBtnTxt = ""; $voucher_attachments = []; if($action=='create'){ $formActionRoute=route($ParentRouteName . '.store'); $breadcrumbCurrentName = __('lang.create'); $submitBtnTxt = __('lang.save'); $is_official = request()->get('is_official'); } else if($action=='edit'){ $formActionRoute = route($ParentRouteName . '.update',$actual_received->id); $breadcrumbCurrentName = __('lang.edit'); $submitBtnTxt = __('lang.update'); $voucher_attachments = $actual_received->voucher_attachments; $is_official = $actual_received->is_official; } $createItemName = $breadcrumbCurrentName . $moduleName; $breadcrumbCurrentIcon = 'add_box'; $breadcrumbMainName = $moduleName; $breadcrumbMainIcon = 'fas fa-receipt'; $voucher_reference = $actual_received->references; @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content')

{{ $createItemName }}

{{ $sell->registration_no }} || {{ $sell->product->product_unique_id}} || {{$sell->customer->name}}



{{ csrf_field() }}
@include('admin.schedule-general-receipts.partials.voucher_types')
@include('admin.schedule-general-receipts.partials.basic_data')
@include('admin.schedule-general-receipts.partials.image_upload',['voucher_attachments'=>$voucher_attachments])
{{__('lang.back')}}
@stop @push('include-css') @endpush @push('include-js') @endpush