laravel scope and attach code example
Example 1: laravel scope relationship
$users = User::popular()->women()->orderBy('created_at')->get();
Example 2: laravel scope relationship
class User extends Model {
protected function getDateFormat()
{
return 'U';
}
}