Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
ticketapp
/
app
:
EmailClient.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class EmailClient extends Model { use HasFactory; use SoftDeletes; public $table = 'email_clients'; protected $fillable = ['author_name', 'name', 'subject', 'id_ticket', 'author_email', 'user_id', 'comment_text']; }