@extends('layouts.app')
{{--Important Variables--}}
@php
$ParentRouteName = 'land.schedule.fileAdjustment';
$moduleName = ' Land File Adjustment';
if($action == 'create'){
$form_action = route($ParentRouteName.'.store',$land_schedule->id);
$createItemName = __('lang.create') . $moduleName;
$breadcrumbCurrentName = " Create";
$submit_button_text = __('lang.save');
}
else if($action == 'edit'){
$form_action = route($ParentRouteName.'.update',$land_schedule_file_adjustment->id);
$createItemName = __('lang.edit') . $moduleName;
$breadcrumbCurrentName = " Edit";
$submit_button_text = __('lang.update');
}
$breadcrumbMainName = $moduleName;
$breadcrumbMainIcon = 'fas fa-barcode';
$breadcrumbCurrentIcon = 'add_box';
@endphp
@section('title')
{{ $moduleName }}->{{ $createItemName }}
@stop
@section('top-bar')
@include('includes.top-bar')
@stop
@section('left-sidebar')
@include('includes.left-sidebar')
@stop
@section('content')
@stop
@push('include-css')
@endpush
@push('include-js')
{{-- --}}
@endpush