Skip to content

Instantly share code, notes, and snippets.

View sonnygauran's full-sized avatar

Sonny Gauran sonnygauran

  • Metro Manila, Philippines
View GitHub Profile
@jakebathman
jakebathman / logslaravel.sh
Created August 19, 2018 00:06
Tail Laravel logs and filter out the stack traces
tail -f -n 450 storage/logs/laravel*.log \
| grep -i -E \
"^\[\d{4}\-\d{2}\-\d{2} \d{2}:\d{2}:\d{2}\]|Next [\w\W]+?\:" \
--color
<?php
namespace App;
trait HasPersonName
{
public function getNameAttribute($name)
{
return new PersonName($name);