34 lines
718 B
PHP
34 lines
718 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
class Alumni extends Model
|
|
{
|
|
use HasApiTokens, HasFactory, Notifiable;
|
|
|
|
protected $fillable = [
|
|
'nama_santri', 'tahun_lulus', 'aktivitas_setelah_lulus', 'kontak', 'keterangan', 'foto'
|
|
];
|
|
|
|
protected $appends = ['foto_url'];
|
|
|
|
public function getFotoUrlAttribute()
|
|
{
|
|
if ($this->foto) {
|
|
return asset('storage/' . $this->foto);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function santri()
|
|
{
|
|
return $this->belongsTo(\App\Models\Santri::class);
|
|
}
|
|
}
|