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