<?php namespace App\Models; use Carbon\Carbon; use Illuminate\Database\Eloquent\Model; /** * Class Reminder * * @property int $id * @property string $push_token * @property string $days * @property string $show_name * @property string $start_time * @property Carbon|null $created_at * @property Carbon|null $updated_at * * @package App\Models */ class Reminder extends Model { protected $table = 'reminders'; protected $fillable = [ 'push_token', 'days', 'show_id', 'show_name', 'start_time' ]; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Admin.php | File | 955 B | 0644 |
|
Image.php | File | 366 B | 0644 |
|
NewsPodcasts.php | File | 299 B | 0644 |
|
Reminder.php | File | 526 B | 0644 |
|
User.php | File | 916 B | 0644 |
|