belongsToMany(\App\Transaction::class, 'essentials_payroll_group_transactions', 'payroll_group_id', 'transaction_id'); } /** * Get the location that owns the payroll group. */ public function businessLocation() { return $this->belongsTo(\App\BusinessLocation::class, 'location_id'); } /** * Get the business that owns the payroll group. */ public function business() { return $this->belongsTo(\App\Business::class, 'business_id'); } }