@extends('admin.layout') @section('content')

Tasks

@foreach($tasks as $index => $task) @endforeach
# Date Title Action
{{ $index + 1 }} {{ $task->created_at->format('Y-m-d') }} {{ $task->title }} View Assign Change View All
@endsection