syntaxlexx / laravel-5-messenger

A Simple Laravel 5, 6, 7, 8, 9, 10 & 11 Messenger with Pusher Capabilities
https://messenger-inertia.acelords.com/
MIT License
104 stars 32 forks source link

extend message model to everride it's fillable #17

Closed mooahmad closed 4 years ago

mooahmad commented 4 years ago

hi , i want to override the fillables to add new attributes

syntaxlexx commented 4 years ago

Hi @mooahmad ,

How about creating your own App/Message model and extending it to the base Message class? Something like:


use Lexx\ChatMessenger\Models\Message as BaseModel;

class Message extends BaseModel
{
         $fillable = [];
}

Let me know how that goes.