N
N
Nikolay2017-06-19 17:40:10
Laravel
Nikolay, 2017-06-19 17:40:10

How to organize dynamic routing?

Hello!
Pages and their content are in the database,
How can I organize dynamic routing with nesting (namely from the root of the site)?
those. if the page has parents, then they were available via nested links.
Now this is implemented clumsily:

Route::get('/{page_section_1}/{page_section_2?}', '[email protected]');

Well, in the controller it is checked whether there is a page and its parent. But what about nesting of 3 or more?
Tell me the solution, or at least in which direction to google.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nik Gubin, 2017-06-19
@iNickolay

You can set one variable into which the whole path will fall (or a part after a certain path), and then in the controller break it by "/" and work like nested pages:

Route::get('/test/{path}', function($path) {
    echo $path; // разбиваем, обрабатываем
})
    ->where('path', '.*?'); // в path упадут совершенно все символы после /test/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question