I'm using Laravel 5.6, bootstrap 3.3.7 and recently added some react components with react native.
The thing is I have a dropdown that is included with bootstrap and everything is working just fine.
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button">{{__('nav.categorias')}} <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li>
<a class="page-scroll" href="/a/route">a name</a>
</li>
<li>
<a class="page-scroll" href="/c/route">c name</a>
</li>
<li>
<a class="page-scroll" href="/b/route">b name</a>
</li>
</ul>
</li>
<!-- jQuery -->
<script src="{{asset('js/jquery.js')}}"></script>
<!-- Bootstrap Core JavaScript -->
<script src="{{asset('js/bootstrap.js')}}"></script>
When i click in the dropdown the options are getting diplayed correctly.
But when I add (as laravel react said)
<script src="{{asset('js/app.js')}}"></script>
The dropdown is not working any more.
I saw in the source-page that the bootstrap and jquery files are beeing added and the source code is just fine.
Should I migrate my bootstrap native to react bootstrap dropdown native?
Any ideas?