/
home
/
techb158
/
immovalet.com
/
platform
/
plugins
/
contact
/
src
/
Models
/
/home/techb158/immovalet.com/platform/plugins/contact/src/Models
mkdir
upload
Name
Size
Mode
Actions
Contact.php
1430
0644
edit
dl
rm
ContactReply.php
573
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/plugins/contact/src/Models/ContactReply.php
(573B)
<?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', ]; }
Save