DONE: feedback module, use permission name for notification
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Feedback\Repositories\Contracts;
|
||||
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Modules\Feedback\Entities\Feedback;
|
||||
|
||||
interface FeedbackRepositoryInterface
|
||||
{
|
||||
/**
|
||||
* Get all feedback with pagination and search
|
||||
*/
|
||||
public function getAllPaginated(int $perPage = 10, string $search = '', string $sortBy = 'id', string $sortOrder = 'asc', array $filters = []);
|
||||
|
||||
/**
|
||||
* Get all feedback with their relationships and pagination with search
|
||||
*/
|
||||
public function getAllWithRelationsPaginated(int $perPage = 10, string $search = '', string $sortBy = 'id', string $sortOrder = 'asc', array $filters = []);
|
||||
|
||||
/**
|
||||
* Get all feedback with their relationships and search
|
||||
*/
|
||||
public function getAllWithRelations(string $search = '', string $sortBy = 'id', string $sortOrder = 'asc'): Collection;
|
||||
|
||||
/**
|
||||
* Create a new feedback
|
||||
*/
|
||||
public function create(array $data): Feedback;
|
||||
|
||||
/**
|
||||
* Find feedback by ID
|
||||
*/
|
||||
public function findById(string $id): ?Feedback;
|
||||
|
||||
/**
|
||||
* Delete feedback (soft delete)
|
||||
*/
|
||||
public function delete(string $id): bool;
|
||||
|
||||
/**
|
||||
* Get all feedback
|
||||
*/
|
||||
public function all(string $search = '', string $sortBy = 'id', string $sortOrder = 'asc'): Collection;
|
||||
}
|
||||
Reference in New Issue
Block a user