mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
Update Laravel to 7.0
This commit is contained in:
@@ -4,6 +4,46 @@ namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* App\EventType
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $admin_desc
|
||||
* @property string $calendar_color
|
||||
* @property string $calendar_icon
|
||||
* @property string $begin_time
|
||||
* @property string $end_time
|
||||
* @property string $location
|
||||
* @property int $is_mandatory
|
||||
* @property int $use_weekly_msg
|
||||
* @property string $weekly_msg_publication_time
|
||||
* @property int $use_schedule
|
||||
* @property array $schedule_model
|
||||
* @property int $is_promoted
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereAdminDesc($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereBeginTime($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereCalendarColor($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereCalendarIcon($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereEndTime($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereIsMandatory($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereIsPromoted($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereLocation($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereScheduleModel($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereUseSchedule($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereUseWeeklyMsg($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\EventType whereWeeklyMsgPublicationTime($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class EventType extends Model
|
||||
{
|
||||
protected $casts = [
|
||||
|
||||
Reference in New Issue
Block a user