Files
cheerstothe_season_2.0/app/Models/NotificationDetails.php
sayliraut 236e337783 changes
2024-07-10 13:10:45 +05:30

24 lines
557 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class NotificationDetails extends Model
{
use HasFactory;
protected $table = "notification_details";
protected $fillable = [
'id',
'principal_xid', 'type', 'description', 'image', 'date_added','is_schedule','delivery_schedule','is_active'
];
protected $guarded = [];
public function Notification()
{
return $this->belongsTo(IamPrincipal::class, 'principal_xid', 'id');
}
}