*/ public function handle(): LengthAwarePaginator { return Form::paginate(15); } public function asController(): Response { return Inertia::render('form/Index', [ 'data' => FormResource::collection($this->handle()), ]); } }