File "FeatureSectionListRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/FeatureSectionList/FeatureSectionListRepository.php
File size: 359 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\FeatureSectionList;
use App\Models\FeatureSectionList;
use App\Repositories\Base\BaseRepository;
class FeatureSectionListRepository extends BaseRepository implements FeatureSectionListInterface {
public function __construct(FeatureSectionList $model) {
parent::__construct($model,'FeatureSectionList');
}
}