@extends('layouts.app') @section('title-head','tasks') @section('content')
Add Task
@if(count($tasks))

There are tasks!

The list is

@endif @forelse( $tasks as $task)
{{ $task->title}}
@empty
There are no tasks!
@endforelse @if ($tasks->count())
@endif
@endsection