Uncaught Error: Bootstrap tooltips require Tether (http://tether.io/) at bootstrap.min.js:7

13.5k Views Asked by At

I am beginner in laravel, so can anyone help me to figure this out ? In /public/app.blade.php look like this

<link href="/css/bootstrap.min.css" rel="stylesheet">
<script src="/js/bootstrap.min.js"></script>

1

There are 1 best solutions below

1
On

Just add tether dependency in your code.

<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script> 
<script src="/js/bootstrap.min.js"></script>

or download the Tether locally from

https://github.com/HubSpot/tether

add add to your project

<script src="path/to/dist/js/tether.min.js"></script>