2015-10-06 131 views
-1

首先感谢所有的帮助。显示自定义页面内容

我试图在收件箱页面上显示自定义内容。我的代码如下所示:

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

但是,此代码仅适用于“消息/收件箱”页面。我怎样才能在“信息/发件箱”页面上添加此内容?对不起英语不好。我是新手:)

回答

0
<?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 } ?> 
相关问题