Skip to content
Advertisement

Directory issue in laravel

As I am leaning laravel I am facing directory issues. I have made a navbar in which a create option is given to access the create file which is located in my resources/views/posts/create directory. The problem is that when I click it for the first time it functions fine and in URL shows I have opened posts/create directory which is fine. but if I click it again, it goes in posts/posts/create directory, which results give 404|Not Found error

my files are create.blade.php

JavaScript

web.php

Route::resource('posts', 'PostController');

and for controller, I used a resource controller PostController.php

JavaScript

Apologies as I know its a very bad way of asking the question but I am finding hard to tell in an easy way

please guide me through it.

Advertisement

Answer

You need to pass full URL.

JavaScript

In a controller, if you want to redirect then.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement