@include('new_layouts.header')
@include('construction_project.side-menu')
@csrf
{{ Form::label('name', __('Planned Start to End Date'), ['class' => 'form-label']) }}*
{{ Form::text('get_date', date('Y-m-d',strtotime($data['con_data']->start_date)), array('class' => 'form-control month-btn','id' => 'datepicker-icon-prepend')) }}
{{ Form::label('name', __('Actual Workdone % as of Today'),['class' => 'form-label']) }} * {{ Form::number('percentage', null, ['class' => 'form-control', 'id' => 'percentage','required'=>'required','max'=>'100','min'=>'1']) }} {{ Form::hidden('task_id', $task_id, ['class' => 'form-control','id'=>'task_id']) }} {{ Form::hidden('user_id', \Auth::user()->id, ['class' => 'form-control']) }}

{{ Form::label('description', __('Description'),['class' => 'form-label']) }} * {{ Form::textarea('description', null, ['class' => 'form-control', 'id' => 'tinymce-mytextarea','rows'=>'3','data-toggle' => 'autosize', 'required'=>'required']) }}
@php $contract_subscription = Auth::user()->checkSubscriptionCount('contract_management',1); @endphp @if($contract_subscription > 0) @foreach ($contract_management as $contract) @php $contract_name = $contract->name; @endphp
{{$contract->text}}
@if($contract->name == "material") @else @endif
{{$contract->t_header}} {{$contract->t_header_2}}Wastage %Hours
@endforeach @endif