@extends('layouts.admin')
@section('pageTitle')
Best Insurance | Insurers
@stop
@section('content')
Start Date |
Start Date |
Due Date |
Assigned To |
Task |
Category |
Priority |
Status |
Owner |
Updated By |
Actions |
@if(isset($tasks))
@foreach($tasks as $task)
{{$task->start_date}} |
{{$task->start_date}} |
{{$task->due_date}} |
{{$task->first_name}} {{$task->last_name}} |
{{$task->task_description}} |
{{$task->category}} |
{{$task->priority}} |
{{$task->status}} |
{{$task->assigned_by}} |
{{$task->updated_by}} |
|
@endforeach
@endif
@stop
@section('pageBottomJs')
@stop