本文整理匯總了PHP中Button::danger方法的典型用法代碼示例。如果您正苦於以下問題:PHP Button::danger方法的具體用法?PHP Button::danger怎麽用?PHP Button::danger使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Button
的用法示例。
在下文中一共展示了Button::danger方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
</div>
<?php
} else {
?>
<h4>Pay all pilots to contiune</h4>
<?php
}
?>
<?php
}
?>
</div>
<?php
}
?>
<?php
if (!$site->finished && $site->active) {
?>
<div class="jumbotron">
<?php
echo Modal::named('close')->withTitle('Close Sheet')->withButton(Button::danger('Close')->block())->withBody(view('modals.close_sheet')->with('id', $site->id)->render());
?>
</div>
<?php
}
?>
</div>
</div>
示例2:
_64.jpg" />
</td>
<td><?php
echo $admin->name;
?>
</td>
<td>
<span data-toggle="tooltip" data-placement="top" title="<?php
echo $admin->updated_at;
?>
">
<?php
echo Carbon\Carbon::parse($admin->updated_at)->diffForHumans();
?>
</span>
</td>
<td>
<?php
echo Modal::named('demote_' . $admin->id)->withTitle('Demote ' . $admin->name)->withButton(Button::danger('demote')->setSize('btn-xs'))->withBody(view('modals.admin_user_info_content')->with('user', $admin)->render());
?>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<?php
echo Modal::named('user_info');
示例3: foreach
foreach ($allowed_corps as $corp) {
?>
<tr>
<td><?php
echo $corp->name;
?>
</td>
<td><?php
echo $corp->value;
?>
</td>
<td class=""><?php
echo Modal::named('edit_option_' . $corp->id)->withTitle('Edit Corp')->withButton(Button::success('edit')->setSize('btn-xs'))->withBody(view('modals.edit_corp')->with('corp', $corp)->render());
?>
<?php
echo Modal::named('remove_corp_' . $corp->id)->withTitle('Remvoe Corp')->withButton(Button::danger('remove')->setSize('btn-xs'))->withBody(view('modals.remove_corp')->with('corp', $corp)->render());
?>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
<div class="page-header">
<h1>Sheet Options</h1>
</div>
<table class="table table-striped">