for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Traits;
trait Sluggable
{
public static function findBySlug($slug)
return self::where('slug', $slug)->first();
}