| Current Path : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/ |
| Current File : /home/copmadinaarea/creditunion.copeastlegondistrict.org/app/Models/LoanCollateral.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LoanCollateral extends Model {
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'loan_collaterals';
public function loan() {
return $this->belongsTo('App\Models\Loan', 'loan_id')->withDefault();
}
}