selamlar arkadaşlar aşağıda attığım kodlarım var post ettiremedim birtürlü get ile verileri çekebiliyorum ama swagger ile post ile verileri post etmiyor 404 hatası veriyor swaggeri laravel 9 sistemime kurdum ama post sistemini çalıştıramadım şuan buyrun kodlar:
/**
* @OA\Post (
* path="/antreman/public/aptal/store",
* tags={"ToDo"},
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(
* @OA\Property(
* type="object",
* @OA\Property(
* property="title",
* type="string"
* ),
* @OA\Property(
* property="content",
* type="string"
* )
* ),
* example={
* "name":"example title",
* "email":"example content",
* "password":"string"
* }
* )
* )
* ),
* @OA\Response(
* response=200,
* description="success",
* @OA\JsonContent(
*
* @OA\Property(property="name", type="string", example="string"),
* @OA\Property(property="email", type="string", example="string"),
* @OA\Property(property="password", type="string", example="string"),
* )
* ),
* @OA\Response(
* response=400,
* description="invalid",
* @OA\JsonContent(
* @OA\Property(property="msg", type="string", example="fail"),
* )
* )
* )
*/