@extends('layouts.app') @section('title', 'The list of tasks') @section('content') @forelse($tasks as $task)
$task->completed])>{{ $task->title }}
@empty
There are no tasks!
@endforelse @if ($tasks->count()) @endif @endsection