getFilterData($filterData); $query = $this->getAboutUsQuery(); if (! $filter['with_deleted']) { $query->whereNull("{$this->table}.deleted_at"); } if (isset($filter['search']) && strlen($filter['search']) > 0) { $query = $this->filterSearchQuery($query, $filter['search']); } return $query ->orderBy($filter['orderBy'], $filter['order']) ->paginate($filter['perPage']); } protected function getFilterData(array $filterData = []): array { $defaultArgs = [ 'perPage' => 10, 'search' => '', 'orderBy' => 'id', 'order' => 'desc', 'with_deleted' => false, ]; return array_merge($defaultArgs, $filterData); } private function getAboutUsQuery(): Builder { return $this->getQuery() ->select( 'about_us.id', 'about_us.restaurant_id', 'about_us.title', 'about_us.description', 'about_us.image', 'about_us.status', 'about_us.created_at', ); } protected function filterSearchQuery(Builder|EloquentBuilder $query, string $searchedText): Builder { $searchable = "%$searchedText%"; return $query->where('about_us.question', 'LIKE', $searchable) ->orWhere('about_us.title', 'LIKE', $searchable) ->orWhere('about_us.description', 'LIKE', $searchable) ->orWhere('about_us.status', 'LIKE', $searchable); } /** * @throws Exception */ public function getByColumn(string $columnName, $columnValue, array $selects = ['*']): ?object { $user = $this->getAboutUsQuery() ->where($columnName, $columnValue) ->first(); if (empty($user)) { throw new Exception( $this->getExceptionMessage(static::MESSAGE_ITEM_DOES_NOT_EXIST_MESSAGE), Response::HTTP_NOT_FOUND ); } return $user; } public function getCount(array $filterData = []): int { $filter = $this->getFilterData($filterData); $query = $this->getQuery(); if (! $filter['with_deleted']) { $query->whereNull("{$this->table}.deleted_at"); } return $query->count(); } /** * @throws Exception */ public function create(array $data): object { try { $data = $this->prepareForDB($data); $userId = $this->getQuery()->insertGetId($data); $user = AboutUs::find($userId); return $user; } catch (Exception $exception) { throw new Exception($exception->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); } } /** * @throws Exception */ public function prepareForDB(array $data, ?object $item = null): array { $data = parent::prepareForDB($data, $item); if (empty($item)) { $data['created_at'] = now(); $data['restaurant_id'] = $this->getCurrentRestaurantId(); $data['status'] = 1; if (! empty($data['image']) && $data['image'] instanceof \Illuminate\Http\UploadedFile) { $data['image'] = fileUploader('about_us/', 'png', $data['image']); } } else { $data['updated_at'] = now(); if (! empty($data['image']) && $data['image'] instanceof \Illuminate\Http\UploadedFile) { $data['image'] = fileUploader('about_us/', 'png', $data['image'], $item->image); } } return $data; } /** * @throws Exception */ public function update(int $id, array $data): ?object { try { $user = AboutUs::find($id); $data = $this->prepareForDB($data, $user); parent::update($id, $data); return $this->getById($id); } catch (Exception $exception) { throw new Exception($exception->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR); } } protected function getExceptionMessages(): array { $exceptionMessages = parent::getExceptionMessages(); $userExceptionMessages = [ static::MESSAGE_ITEM_DOES_NOT_EXIST_MESSAGE => 'AboutUs does not exist.', static::MESSAGE_ITEM_COULD_NOT_BE_DELETED => 'AboutUs could not be deleted.', ]; return array_merge($exceptionMessages, $userExceptionMessages); } }