PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
contact
/
src
/
Models
<?php namespace Botble\Contact\Models; use Botble\Base\Models\BaseModel; class ContactReply extends BaseModel { /** * The database table used by the model. * * @var string */ protected $table = 'contact_replies'; /** * The date fields for the model.clear * * @var array */ protected $dates = [ 'created_at', 'updated_at', ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'message', 'contact_id', ]; }
[+]
..
[-] Contact.php
[edit]
[-] ContactReply.php
[edit]