@extends('layouts.app')
{{--Important Variables--}}
@php
$ParentRouteName = 'sub-contracting.work-item-unit';
if($action == 'create'){
$form_action = route($ParentRouteName.'.store');
$createItemName = __('lang.create') . " Work Item Unit";
$breadcrumbCurrentName = __('lang.create');
$submit_button_text = __('lang.save');
}else if($action == 'edit'){
$form_action = route($ParentRouteName.'.update',$work_item_unit->id);
$createItemName = __('lang.edit') . " Work Item Unit";
$breadcrumbCurrentName = __('lang.edit');
$submit_button_text = __('lang.update');
}
$moduleName = ' '.__('lang.item_issue_return');
$breadcrumbMainName = " Work Item Unit";
$breadcrumbMainIcon = "fas fa-file-alt";
$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