سؤال

لا أحد يعرف كيف يمكنني أن أفعل لوضع Bootstrap glyphicon في بلدي

{{ link_to_route('post.create', 'New' ) }}

وأود أن تظهر غليفيكون قبل 'جديد' ، وأنا لا أعرف كيفية القيام بذلك.

هل كانت مفيدة؟

المحلول

جرب هذا.

<a href="{{ route('post.create') }}">
        <i class="glyphicon glyphicon-plus"></i>
        <span>New</span>
</a>

نصائح أخرى

مع مساعد مثل هذا واحد:

function icon_link_to_route($icon, $route, $title = null, $parameters = array(), $attributes = array())
{
    $url = route($route, $parameters);

    $title = (is_null($title)) ? $url : e($title);

    $attributes = HTML::attributes($attributes);

    $title = '<span class="glyphicon glyphicon-'.e($icon).'"></span>' . $title;

    return '<a href="'.$url.'"'.$attributes.'>'.$title.'</a>';
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top