File "AddonRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Http/Controllers/AddonRepository.php
File size: 273 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Addon;

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

class AddonRepository extends BaseRepository implements AddonInterface {
    public function __construct(Addon $model) {
        parent::__construct($model);
    }
}