*/ namespace Modules\MMFCustomersGroups\Entities; use Illuminate\Database\Eloquent\Model; class CustomersGroup extends Model { public $timestamps = false; /** * Get the Mailbox this group is linked to. */ public function mailbox() { return $this->belongsTo(Mailbox::class); } /** * Get the Customers that are included in this group. */ public function customers() { return $this->belongsToMany(Customer::class, 'customers_group_customers'); } /** * Get the list of Emails that are included in this group. */ public function emails() { $customers = $this->customers; // Get a list of Emails from the list of Customers. $emails = $customers ->pluck('emails') ->flatten(); return $emails; } }