/var/www/hkosl.com/littleark/webadmin/models/PayeasePayment.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

use Illuminate\Database\Capsule\Manager as DB;
use 
Carbon\Carbon as Carbon;

class 
PayeasePayment extends BaseModel{
    protected 
$table "payease_payment";

    public function 
payeasePaymentDtls()
    {
        return 
$this->hasMany('PayeasePaymentDtl');
    }
}