69 lines
1.3 KiB
PHP
69 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Banner extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'admin_id',
|
|
'gambar',
|
|
'judul',
|
|
'deskripsi',
|
|
'status',
|
|
'urutan',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'status' => 'boolean',
|
|
'urutan' => 'integer',
|
|
];
|
|
|
|
public function admin()
|
|
{
|
|
return $this->belongsTo(Admin::class);
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include active banners.
|
|
*/
|
|
public function getGambarUrlAttribute()
|
|
{
|
|
if ($this->gambar) {
|
|
return url('/storage/banner/'.$this->gambar);
|
|
}
|
|
|
|
return asset('images/default-img.png');
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include active banners.
|
|
*/
|
|
public function scopeActive($query)
|
|
{
|
|
return $query->where('status', true);
|
|
}
|
|
|
|
/**
|
|
* Scope a query to order by urutan.
|
|
*/
|
|
public function scopeOrdered($query)
|
|
{
|
|
return $query->orderBy('urutan')->orderBy('created_at', 'desc');
|
|
}
|
|
}
|