dstpabuaran.com/app/Services/Admin/Master/CustomerService.php

42 lines
1.1 KiB
PHP

<?php
namespace App\Services\Admin\Master;
use App\Models\Customer;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Database\Eloquent\Collection;
class CustomerService
{
public function getAll(): Collection
{
return Customer::select('id', 'name', 'phone_number', 'address')->latest()->get();
}
public function paginated(int $perPage = 25, string $search = '', string $sort = 'created_at', string $direction = 'desc'): 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();
}
}