| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace UCore\DcatAdmin\Grid\Views;
- use UCore\DcatAdmin\Form\AbstractTool;
- use App\Module\System\Models\AdminGridView;
- use Illuminate\Support\Facades\Route;
- class GridHeaderButtonPublic extends GridHeaderButtonPrivate
- {
- public function render(): string
- {
- $url = $this->getUrl();
- $title =$this->adminGridView->title;
- // fa-bookmark 实心
- // fa-bookmark-o 空心
- $now = $this->getNowIcon();
- return "<a href='{$url}' class='btn btn-success'>
- <span class='d-none d-sm-inline'>
- {$title}
- </span> $now
- </a>";
- }
- }
|