PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
contact
/
src
/
Models
<?php namespace Botble\Contact\Models; use Botble\Base\Supports\Avatar; use Botble\Base\Traits\EnumCastable; use Botble\Contact\Enums\ContactStatusEnum; use Botble\Base\Models\BaseModel; use Exception; use Illuminate\Contracts\Routing\UrlGenerator; use RvMedia; class Contact extends BaseModel { use EnumCastable; /** * The database table used by the model. * * @var string */ protected $table = 'contacts'; /** * 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 = [ 'name', 'email', 'phone', 'address', 'subject', 'content', 'status', ]; /** * @var array */ protected $casts = [ 'status' => ContactStatusEnum::class, ]; /** * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function replies() { return $this->hasMany(ContactReply::class); } /** * @return UrlGenerator|string */ public function getAvatarUrlAttribute() { try { return (new Avatar)->create($this->name)->toBase64(); } catch (Exception $exception) { return RvMedia::getDefaultImage(); } } }
[+]
..
[-] Contact.php
[edit]
[-] ContactReply.php
[edit]