Skip to content

Tooltips

Adding tooltips to any component is very easy: 1 - Add title HTML attribute as usual 2 - Add data-toggle="tooltip" HTML attribute 3 - Optionally add data-placement attribute with one of the following values: top, bottom, left, right to specify tooltip position

For example:

 <a
    type="button"
    class="btn btn-primary"
    href="{{ route('person.create') }}"
    title="{{trans('app.create')}}"
    data-toggle="tooltip"
    data-placement="bottom"
>
    <i class="btn-icon cil-plus"></i> {{ trans('app.create') }}
</a>