首先感谢大家的帮助。
我正在尝试在收件箱页面上显示自定义内容。我的代码是这样的:
<?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"页面。我怎样才能在"消息/发件箱"页面添加此内容?抱歉我的英语不好。我是新手:)
<?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 } ?>