Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
admin_panel
/
app
/
Repositories
/
FeesInstallment
:
FeesInstallmentRepository.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Repositories\FeesInstallment; use App\Models\FeesInstallment; use App\Repositories\Saas\SaaSRepository; class FeesInstallmentRepository extends SaaSRepository implements FeesInstallmentInterface { public function __construct(FeesInstallment $model) { parent::__construct($model); } public function default() { return $this->defaultModel()->where('default', 1)->first(); } }