Currently, I am working on filling a div element with a link element created using Laravel.
<li class="{{ Active::route('guide-dashboard') }}">
<div class="dashboardLink">
<i class="fa fa-envelope-o dashboardIcon"></i>
{{ HTML::linkAction('GuideController@getIndex', "Messages") }}
</div>
</li>
Traditionally, the 'a' tags would contain the div element. However, since this link is generated with Laravel, I am unsure how to insert content between the 'a' tags.