File "StaffRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Staff/StaffRepository.php
File size: 283 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Staff;

use App\Models\Staff;
use App\Repositories\Base\BaseRepository;

class StaffRepository extends BaseRepository implements StaffInterface {

    public function __construct(Staff $model) {
        parent::__construct($model, 'staff');
    }
}