53 lines
1.8 KiB
PHP
53 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $id_pengumuman
|
|
* @property string|null $judul
|
|
* @property string|null $isi
|
|
* @property \Illuminate\Support\Carbon|null $tanggal
|
|
* @property int|null $dibuat_oleh
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @property-read \App\Models\User|null $pembuat
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereDibuatOleh($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereIdPengumuman($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereIsi($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereJudul($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereTanggal($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|Pengumuman whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Pengumuman extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'pengumuman';
|
|
protected $primaryKey = 'id_pengumuman';
|
|
|
|
protected $fillable = [
|
|
'judul',
|
|
'isi',
|
|
'foto',
|
|
'lampiran',
|
|
'tanggal',
|
|
'dibuat_oleh'
|
|
];
|
|
|
|
protected $casts = [
|
|
'tanggal' => 'date',
|
|
];
|
|
|
|
public function pembuat()
|
|
{
|
|
return $this->belongsTo(User::class, 'dibuat_oleh', 'id');
|
|
}
|
|
} |