bug fixes, senderID polishing, support fees, paperless partial
This commit is contained in:
BIN
app/Models/.DS_Store
vendored
BIN
app/Models/.DS_Store
vendored
Binary file not shown.
19
app/Models/ClientSupportFees.php
Normal file
19
app/Models/ClientSupportFees.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ClientSupportFees extends Model
|
||||
{
|
||||
protected $guarded = array('id');
|
||||
public $table = "client_support_fees";
|
||||
|
||||
public function client_info(){
|
||||
return $this->hasOne('App\Models\Client', 'id', 'client_id');
|
||||
}
|
||||
public function created_by_info(){
|
||||
// return $this->hasOne('App\Models\Account', 'id', 'auth_user_id');
|
||||
return $this->hasOne('App\Models\SystemUser', 'id', 'auth_user_id');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user