Сначала спасибо всем за помощь.
Я пытаюсь показать пользовательский контент на странице входящих. Мой код выглядит так:
<?php
$page = basename($_SERVER['REQUEST_URI']);
if ($page == 'messages' || $page == "/" || $page == 'inbox') {
?>
@if ($buttons or $showSearchBox)
<div class="toolbar top">
{!! $buttons !!}
@if ($showSearchBox)
<div class="model-search-box">
@if (user()->countMessages() > 0)
<div class="inbox-notify">
You have unread messages, please read that!
</div>
@endif
{!! Form::open(['url' => URL::current().'/search']) !!}
{!! Form::text('search', $searchString, array('placeholder'=>'Search in messages ), ['class' => 'search-string']) !!}
{!! Form::submit(trans('app.search'), ['class' => 'button-search']) !!}
{!! Form::close() !!}
</div>
@endif
</div>
@endif
<?php } ?>
Но этот код работает только на странице «messages / inbox». Как я тоже могу добавить этот контент на странице «messages / outbox»? Извините за плохой английский. Я новичок в этом 🙂
<?php
$page = basename($_SERVER['REQUEST_URI']);
if ($page == 'messages' || $page == "/" || $page == 'inbox' || $page == 'outbox') {
?>
@if ($buttons or $showSearchBox)
<div class="toolbar top">
{!! $buttons !!}
@if ($showSearchBox)
<div class="model-search-box">
@if (user()->countMessages() > 0)
<div class="inbox-notify">
You have unread messages, please read that!
</div>
@endif
{!! Form::open(['url' => URL::current().'/search']) !!}
{!! Form::text('search', $searchString, array('placeholder'=>'Search in messages ), ['class' => 'search-string']) !!}
{!! Form::submit(trans('app.search'), ['class' => 'button-search']) !!}
{!! Form::close() !!}
</div>
@endif
</div>
@endif
<?php } ?>
Других решений пока нет …