for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Services\Navigation;
class Section
{
public function section() : string
__construct()
if(request()->segment(1) === 'blender') {
return 'back';
}
return 'front';
public function isFront() : bool
return $this->section() === 'front';
public function isBack() : bool
return $this->section() === 'back';