есть вот такой вот код
<?php if (isset($mangaOptions->allow_download_chapter) && $mangaOptions->allow_download_chapter == '1') { ?>
@if(config('settings.orientation') === 'rtl')
{{link_to_route('front.manga.download', Lang::get('messages.front.manga.download'), array('mangaSlug' => $manga->slug, 'chapterId' => $chapter->id),
array('class' => 'btn btn-primary btn-xs download', 'style' => 'float:left; margin-right: 10%'))}}
@else
{{link_to_route('front.manga.download', Lang::get('messages.front.manga.download'), array('mangaSlug' => $manga->slug, 'chapterId' => $chapter->id),
array('class' => 'btn-filt2', 'style' => 'float:right; margin-left: 2%'))}}
@endif
<?php } ?>
<div style="float:right" class="date-chapter-title-rtl">
{{ $chapter->created_at->format('d.m.Y') }}
<?php /*{{ App::make("HelperController")->formateCreationDate($chapter->created_at) }}*/ ?>
</div>
<?php if (isset($mangaOptions->show_contributer_pseudo) && $mangaOptions->show_contributer_pseudo == '1') { ?>
<div @if(config('settings.orientation') === 'rtl') style="float: left; margin-left: 10%;" @else style="float:right; margin-right: 10%" @endif>
<?php if (is_module_enabled('MySpace')): ?>
<a href="{{route('user.show', $chapter->user->username)}}">
<i class="fa fa-user"></i> {{ $chapter->user->username }}
</a>
<?php else : ?>
<i class="fa fa-user"></i> {{ $chapter->user->username }}
<?php endif; ?>
</div>
<?php } ?>
Где front.manga.download отвечает за надпись "Скачать"
нужно заменить ее на облачко со стрелочкой
<i class="fa fa-cloud-download" aria-hidden="true"></i>
уже час бьюсь по разному ставлю подскажите что я не так делаю почему не выводится.