Skip to content
Snippets Groups Projects
Project.php 398 B
Newer Older
beardedwarrior's avatar
beardedwarrior committed
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Project extends Model
{
    /**
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    public function deposits()
    {
        return $this->hasMany(Deposit::class, 'payment_id', 'payment_id');
beardedwarrior's avatar
beardedwarrior committed
    }

    public function getAmountReceivedAttribute() {
        return $this->deposits->sum('amount');
    }
beardedwarrior's avatar
beardedwarrior committed
}