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