for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
use App\TaskEvent;
class TasksTimelineControler extends Controller
{
public function index()
$task_events = TaskEvent::all()->reverse();
return view('timeline', ['task_events' => $task_events]);
}