0
I’m wearing a framework
called SBAdmin
, which is nothing more than Bootstrap 4.
But by creating the same collapsible
that FW provides as an example it does not work in certain cases, The error is in the url:
When a URL is placed like this: localhost:8000/Cadastro
it works normally. Already if I put in a URL like this: localhost:8000/Cadastro/Aluno
no longer works.
I’m using the BLADE
pattern of laravel 5.4
therefore to a standard link between the page layout and the content itself, in addition to the collapsible
is being used as a menu in the Default Layout.
Is the framework called correctly on the Register/Student page? Is the error only in Collapsible? Post your code to help
– Costamilam
Laravel uses Blade as a default that allows a content page to inherit features from the default page, so if it worked on one, it worked on all, but this error is happening in URL’s of a composite path, for example local/xxyy/pastalegal/ and not in short paths as: local/xxyy/
– Plinio Fabrycio