for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyBlade\Directives;
use EasyBlade\Contract\Directivable;
class SessionExistsDirective implements Directivable
{
public static function handle($parameter)
return "<?php if(session()->exists({$parameter})): ?>";
}