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