123456789101112131415161718192021222324 |
- <?php
- namespace App\Repositories\Jobfairout;
- use App\Models\Jobfairout\JobfairoutFeedback;
- use Prettus\Repository\Eloquent\BaseRepository;
- class jobfairoutFeedbackRepository extends BaseRepository
- {
- public function model()
- {
- return JobfairoutFeedback::class;
- }
- public function getOne($where)
- {
- return $this->model->where($where)->first();
- }
- }
|