显示自定义页面内容

Show custom page content

首先感谢大家的帮助。

我正在尝试在收件箱页面上显示自定义内容。我的代码看起来像这样:

 <?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 } ?>