在laravel中使用link_to_action生成的标记内添加span

时间:2014-12-03 05:08:20

标签: php html laravel hyperlink

我需要在气泡中显示约会垂直菜单附近的新约会的数量。我已经计算了计数但链接是使用link_to_action显示的,我需要在一个范围内显示一个应该位于标签内的计数。

<?php if(Session::get('side') == 'Appointments'){ ?>  
            <li><?php echo link_to_action('AdminController@anyShowAppointmentList', 'Appointments', $parameters = array(), $attributes = array('class'=>'active')); ?></li>
        <?php Session::forget('side'); }
 else { ?>
            <li><?php echo link_to_action('AdminController@anyShowAppointmentList', 'Appointments', $parameters = array(), $attributes = array()); ?><span class="update-plugins count-$appo"><span class="plugin-count">{{$appo}}</span></span></li>
        <?php } ?>

变量$ appo包含计数值。上面的代码显示菜单项&#34;约会&#34;下面的计数。有没有人知道如何在&#34; a&#34;内显示这个范围?使用link_to_action形成标签。

1 个答案:

答案 0 :(得分:0)

ok ..我自己解决了..我添加了

HTML::decode(link_to_action('AdminController@anyShowAppointmentList', 'Appointments<span class="update-plugins count-$appo"><span class="plugin-count">'.$appo.'</span></span>', $parameters = array(), $attributes = array()));