*/ protected $fillable = [ 'name', ]; /** * Get the customers for the group. */ public function customers() { return $this->hasMany(Customer::class); } }