| Current Path : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/ |
| Current File : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/LoanProduct.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LoanProduct extends Model {
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'loan_products';
/**
* Scope a query to only include active users.
*
* @param \Illuminate\Database\Eloquent\Builder $query
* @return void
*/
public function scopeActive($query)
{
$query->where('status', 1);
}
}