21 lines
377 B
PHP
Executable File
21 lines
377 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Donation extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
public static $needed = 150;
|
|
|
|
public static function getPercentage() {
|
|
return (static::getFunds() / static::$needed) * 100;
|
|
}
|
|
|
|
public static function getFunds() {
|
|
return static::sum('amount') ?? 0;
|
|
}
|
|
}
|