Removed facades lang and url from views

This commit is contained in:
Joseph Cohen
2015-01-01 15:15:07 -06:00
parent 82ac6b12b5
commit eda027a88c
23 changed files with 120 additions and 120 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
@if(Setting::get('show_support'))
<footer class='footer'>
<p>{{ Lang::get('cachet.powered_by', array('app' => Setting::get('app_name'))) }}</p>
<p>{{ trans('cachet.powered_by', array('app' => Setting::get('app_name'))) }}</p>
<p><a href='/rss'><i class='ion-social-rss'></i> RSS Feed</a></p>
@if(Auth::check())
<p>
<a href="{{ URL::route('dashboard') }}">{{ Lang::get('cachet.dashboard.dashboard') }}</a> &ndash; <a href="{{ URL::route('logout') }}">{{ Lang::get('cachet.logout') }}</a>
<a href="{{ route('dashboard') }}">{{ trans('cachet.dashboard.dashboard') }}</a> &ndash; <a href="{{ route('logout') }}">{{ trans('cachet.logout') }}</a>
</p>
@endif
</footer>