I have been working out for a while and i can’t seem to find any solution to it! I’m using bootstrap and i have a dismissible alert but when i click on the x to dismiss nothing happens.
Below is the code
<div class="row">
<div class="col-8">
<div class="d-none d-lg-block mb-4">
<div class="alert alert-success alert-dismissible fade show" role="alert">
{{ session('status') }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
</div>