latest()->get(); } public function paginated(int $perPage = 25, string $search = '', string $sort = 'created_at', string $direction = 'desc', array $filters = []): LengthAwarePaginator { return Customer::query() ->select(['id', 'name', 'phone_number', 'address']) ->when($search, fn ($q) => $q->where('name', 'like', "%{$search}%")) ->orderBy($sort, $direction) ->paginate($perPage); } public function create(array $data): Customer { return Customer::create($data); } public function update(Customer $customer, array $data): Customer { $customer->update($data); return $customer; } public function delete(Customer $customer): bool { return $customer->delete(); } }