Created
January 13, 2021 21:15
-
-
Save morrislaptop/5f5ba14ee53b9fb91a13bc109a60e0ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Support\Facades\Storage; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Laravel\Scout\Searchable; | |
trait BuildBehaviour | |
{ | |
use Searchable; | |
public function shortSha() | |
{ | |
return substr($this->sha, 0, 7); | |
} | |
public function scopePublished($query) | |
{ | |
return $query | |
->where('status', 'published') | |
->latest('build_finished_at'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment