File "LeaveMasterRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/LeaveMaster/LeaveMasterRepository.php
File size: 303 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\LeaveMaster;

use App\Models\LeaveMaster;
use App\Repositories\Saas\SaaSRepository;

class LeaveMasterRepository extends SaaSRepository implements LeaveMasterInterface {
    public function __construct(LeaveMaster $model) {
        parent::__construct($model);
    }
}