19 lines
287 B
PHP
19 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Presenters\Html;
|
|
|
|
class FontAwesomeHtmlPresenter
|
|
{
|
|
use BaseHtmlPresenter;
|
|
|
|
public function icon($name = '')
|
|
{
|
|
return $this->tag('i', [
|
|
'class' => [
|
|
'fa',
|
|
'fa-' . $name
|
|
]
|
|
]);
|
|
}
|
|
}
|