@extends('layouts.user') {{-- Web site Title --}} @section('title') {{ $title }} @stop @section('styles') @stop {{-- Content --}} @section('content') @include('flash::message')

{{ trans('task.not_started') }}

@if(isset($tasks)) @foreach($tasks as $task) @if($task->status==='Not Started') @endif @endforeach @endif

{{ trans('task.in_progress') }}

@if(isset($tasks)) @foreach($tasks as $task) @if($task->status==='In Progress') @endif @endforeach @endif

{{ trans('task.pending') }}

@if(isset($tasks)) @foreach($tasks as $task) @if($task->status==='Pending') @endif @endforeach @endif

{{ trans('task.completed') }}

@if(isset($tasks)) @foreach($tasks as $task) @if($task->status==='Completed') @endif @endforeach @endif
{{--create task--}} {{--show task modal--}} @stop {{-- Scripts --}} @section('scripts') @stop