dbfdg
{{ Form::open(array('route' => array('project.milestone.store',$project->id))) }}
{{-- start for ai module--}}
@php
$plan= \App\Models\Utility::getChatGPTSettings();
@endphp
@if($plan->chatgpt == 1)
@endif
{{-- end for ai module--}}
{{ Form::label('title', __('Title'),['class' => 'form-label']) }}
{{ Form::text('title', null, array('class' => 'form-control','required'=>'required')) }}
@error('title')
{{ $message }}
@enderror
{{ Form::label('status', __('Status'),['class' => 'form-label']) }}
{!! Form::select('status',\App\Models\Project::$project_status, null,array('class' => 'form-control select','required'=>'required')) !!}
@error('client')
{{ $message }}
@enderror
{{ Form::label('start_date', __('Start Date'),['class' => 'col-form-label']) }}
{{ Form::date('start_date', '', array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('due_date', __('Due Date'),['class' => 'col-form-label']) }}
{{ Form::date('due_date', '', array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('cost', __('Cost'),['class' => 'col-form-label']) }}
{{ Form::number('cost', '', array('class' => 'form-control','required'=>'required','stage'=>'0.01')) }}
{{ Form::label('description', __('Description'),['class' => 'form-label']) }}
{!! Form::textarea('description', null, ['class'=>'form-control','rows'=>'2']) !!}
@error('description')
{{ $message }}
@enderror
{{ Form::close() }}