replace {{ trans() }} with @lang()

This commit is contained in:
Jakob Schrettenbrunner 2017-01-18 02:01:26 +01:00
parent 542b919bd1
commit e075b9061e
10 changed files with 105 additions and 105 deletions

View file

@ -29,9 +29,9 @@
@endsection
@section('content-header')
<h1>{{ trans('server.index.header') }}<small>{{ trans('server.index.header_sub')}}</small></h1>
<h1>@lang('server.index.header')<small>@lang('server.index.header_sub')</small></h1>
<ol class="breadcrumb">
<li><a href="{{ route('index') }}">{{ trans('strings.servers') }}</a></li>
<li><a href="{{ route('index') }}">@lang('strings.servers')</a></li>
<li class="active">{{ $server->name }}</li>
</ol>
@endsection