| 12345678910111213141516171819 |
- <?php
- namespace App\Http\Controllers;
- use App\Services\TbrBillingPreviewService;
- use Illuminate\Http\JsonResponse;
- class TbrBillingPreviewController extends Controller
- {
- public function __construct(
- protected TbrBillingPreviewService $service,
- ) {}
- public function index(): JsonResponse
- {
- $items = $this->service->getAll();
- return $this->successResponse(payload: $items);
- }
- }
|