File "LeaveRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Leave/LeaveRepository.php
File size: 273 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Leave;
use App\Models\Leave;
use App\Repositories\Saas\SaaSRepository;
class LeaveRepository extends SaaSRepository implements LeaveInterface {
public function __construct(Leave $model) {
parent::__construct($model);
}
}