DONE: layout letter with letterhead and footer, notification for newly...

This commit is contained in:
ISMAIL MASSERAN
2026-06-28 02:16:49 +00:00
parent 94ecbe5887
commit 034ecf947f
400 changed files with 29802 additions and 5446 deletions
@@ -0,0 +1,23 @@
<?php
namespace Modules\MembershipApplication\Repositories\Contracts;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Modules\MembershipApplication\Entities\MembershipApplication;
interface MembershipApplicationRepositoryInterface
{
public function create(array $data): MembershipApplication;
public function findById(string $id): ?MembershipApplication;
public function findByIdWithRelations(string $id): ?MembershipApplication;
public function getAllPaginated(
int $perPage = 10,
string $search = '',
?string $status = null,
string $sortBy = 'submitted_at',
string $sortOrder = 'desc'
): LengthAwarePaginator;
}