@extends('layouts.main') @section('main-container')
@if (Session::has('success')) @endif @if($errors->any()) @endif
@csrf
Task Progress
Add
@php $count = 1; @endphp
@foreach ($task_progresses as $task_progress) @endforeach
Sl Task Progress Description Task Progress Duration Status Action
{{ $task_progress->id }} {{ $task_progress->description }} {{ $task_progress->duration }} {{ $task_progress->status ==1 ? 'Active': 'Inactive'}}
@endsection