'array', 'customer' => 'array', ]; public function getRouteKeyName() { return 'invoice_no'; } public function getItemsCountAttribute($value) { $pcsCount = 0; foreach ($this->items as $item) { $pcsCount += $item['qty']; } return count($this->items).' Item, '.$pcsCount.' Pcs'; } public function getExchange() { return $this->payment - $this->total; } public function user() { return $this->belongsTo(User::class); } }