Viewing file: create.blade.php (6.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
{{ Form::open(['route' => ['projects.tasks.store',$project_id,$stage_id],'id' => 'create_task']) }} <div class="modal-body"> {{-- start for ai module--}} @php $plan= \App\Models\Utility::getChatGPTSettings(); @endphp @if($plan->chatgpt == 1) <div class="text-end"> <a href="#" data-size="md" class="btn btn-primary btn-icon btn-sm" data-ajax-popup-over="true" data-url="{{ route('generate',['project task']) }}" data-bs-placement="top" data-title="{{ __('Generate content with AI') }}"> <i class="fas fa-robot"></i> <span>{{__('Generate with AI')}}</span> </a> </div> @endif {{-- end for ai module--}} <div class="row"> <div class="col-6"> <div class="form-group"> {{ Form::label('name', __('Task name'),['class' => 'form-label']) }}<span class="text-danger">*</span> {{ Form::text('name', null, ['class' => 'form-control','required'=>'required']) }} </div> </div> <div class="col-6"> <div class="form-group"> {{ Form::label('milestone_id', __('Milestone'),['class' => 'form-label']) }} <select class="form-control select" name="milestone_id" id="milestone_id"> <option value="0" class="text-muted">{{__('Select Milestone')}}</option> @foreach($project->milestones as $m_val) <option value="{{ $m_val->id }}">{{ $m_val->title }}</option> @endforeach </select> </div> </div> <div class="col-12"> <div class="form-group"> {{ Form::label('description', __('Description'),['class' => 'form-label']) }} <small class="form-text text-muted mb-2 mt-0">{{__('This textarea will autosize while you type')}}</small> {{ Form::textarea('description', null, ['class' => 'form-control','rows'=>'1','data-toggle' => 'autosize']) }} </div> </div> <div class="col-6"> <div class="form-group"> {{ Form::label('estimated_hrs', __('Estimated Hours'),['class' => 'form-label']) }}<span class="text-danger">*</span> <small class="form-text text-muted mb-2 mt-0">{{__('allocated total ').$hrs['allocated'].__(' hrs in other tasks')}}</small> {{ Form::number('estimated_hrs', null, ['class' => 'form-control','required' => 'required','min'=>'0','maxlength' => '8']) }} </div> </div> <div class="col-6"> <div class="form-group"> {{ Form::label('priority', __('Priority'),['class' => 'form-label']) }} <small class="form-text text-muted mb-2 mt-0">{{__('Set Priority of your task')}}</small> <select class="form-control select" name="priority" id="priority" required> @foreach(\App\Models\ProjectTask::$priority as $key => $val) <option value="{{ $key }}">{{ __($val) }}</option> @endforeach </select> </div> </div> <div class="col-6"> <div class="form-group"> {{ Form::label('start_date', __('Start Date'),['class' => 'form-label']) }} {{ Form::date('start_date', null, ['class' => 'form-control']) }} </div> </div> <div class="col-6"> <div class="form-group"> {{ Form::label('end_date', __('End Date'),['class' => 'form-label']) }} {{ Form::date('end_date', null, ['class' => 'form-control']) }} </div> </div> </div> <div class="form-group"> <label class="form-label">{{__('Task members')}}</label> <small class="form-text text-muted mb-2 mt-0">{{__('Below users are assigned in your project.')}}</small> </div> <div class="list-group list-group-flush mb-4"> <div class="row"> @foreach($project->users as $user) <div class="col-6"> <div class="list-group-item px-0"> <div class="row align-items-center"> <div class="col-auto"> <a href="#" class="avatar avatar-sm rounded-circle"> <img class="wid-40 rounded-circle ml-3" data-original-title="{{(!empty($user)?$user->name:'')}}" @if($user->avatar) src="{{asset('/storage/uploads/avatar/'.$user->avatar)}}" @else src="{{asset('/storage/uploads/avatar/avatar.png')}}" @endif/> </a> </div> <div class="col"> <p class="d-block h6 text-sm mb-0">{{ $user->name }}</p> <p class="card-text text-sm text-muted mb-0">{{ $user->email }}</p> </div> <div class="col-auto text-end add_usr" data-id="{{ $user->id }}"> <button type="button" class="btn btn-xs btn-animated btn-blue rounded-pill btn-animated-y mr-3"> <span class="btn-inner--visible"> <i class="ti ti-plus" id="usr_icon_{{$user->id}}"></i> </span> <span class="btn-inner--hidden text-white" id="usr_txt_{{$user->id}}">{{__('Add')}}</span> </button> </div> </div> </div> </div> @endforeach </div> {{ Form::hidden('assign_to', null) }} </div> @if(isset($settings['google_calendar_enable']) && $settings['google_calendar_enable'] == 'on') <div class="form-group col-md-6"> {{Form::label('synchronize_type',__('Synchronize in Google Calendar ?'),array('class'=>'form-label')) }} <div class="form-switch"> <input type="checkbox" class="form-check-input mt-2" name="synchronize_type" id="switch-shadow" value="google_calender"> <label class="form-check-label" for="switch-shadow"></label> </div> </div> @endif </div> <div class="modal-footer"> <input type="button" value="{{__('Cancel')}}" class="btn btn-light" data-bs-dismiss="modal"> <input type="submit" value="{{__('Create')}}" class="btn btn-primary"> </div> {{Form::close()}}
|