@extends('core::layouts.master') @section('title', '| Project Milestone Tasks') @section('content')

Project Milestone Tasks

@if (Auth::user()->hasAnyRole(['ADMIN'])) Create New @endif
All Project Milestone Tasks
@if(count($projectMilestoneTasks) > 0) @foreach($projectMilestoneTasks as $projectMilestoneTask) @endforeach @endif
Title Due Date Status Created At Actions
{{$projectMilestoneTask->title}} {{$projectMilestoneTask->due_date}} {{$projectMilestoneTask->status}} {{$projectMilestoneTask->created_at}} @if (Auth::user()->hasAnyRole(['ADMIN'])) @endif @if (Auth::user()->hasAnyRole(['ADMIN'])) @include ('partials.modals._confirmation', ['id' => $projectMilestoneTask->id, 'confirm_route' => 'admin.projects.milestones.tasks.delete', 'message' => 'Are you sure you want to delete ' . ($projectMilestoneTask->title ? '' : 'this') . ' project milestone' . ($projectMilestoneTask->title ? ' ' . $projectMilestoneTask->title . '' : '') . '?', 'submitLabel' => 'Delete']) @endif
@endsection @push('scripts') @endpush