*/ public function handle(): LengthAwarePaginator { return Invoice::select('*')->with('positions')->paginate(15); } public function asController(): Response { return Inertia::render('invoice/Index', [ 'data' => InvoiceResource::collection($this->handle()), ]); } }