Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Models
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/app/Models/NotificationAlert.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class NotificationAlert extends Model { use HasFactory; protected $table = "notification_alerts"; protected $fillable = ['name', 'language', 'mail_message', 'sms_message', 'push_notification_message', 'mail', 'sms', 'push_notification']; protected $casts = [ 'id' => 'integer', 'name' => 'string', 'language' => 'string', 'mail_message' => 'string', 'sms_message' => 'string', 'push_notification_message' => 'string', 'mail' => 'integer', 'sms' => 'integer', 'push_notification' => 'integer', ]; }
v.01