File "SessionYearsTrackingsRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/SessionYearsTrackings/SessionYearsTrackingsRepository.php
File size: 378 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\SessionYearsTrackings;

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

class SessionYearsTrackingsRepository extends SaaSRepository implements SessionYearsTrackingsInterface {
    public function __construct(SessionYearsTracking $model) {
        parent::__construct($model, 'session_years_trackings');
    }
}