Getting started
Bootstrap Admin Ui lets you build your Bootstrap admin panels using Sylius and Symfony UX.
Installation
composer require sylius/bootstrap-admin-uiConfiguring the CRUD templates
Usage with the Sylius Resource package
namespace App\Entity;
use Sylius\Resource\Metadata\AsResource;
use Sylius\Resource\Model\ResourceInterface;
#[AsResource(
// We still use the Sylius admin ui templates dir.
templatesDir: '@SyliusAdminUi/crud',
)]
class Speaker implements ResourceInterface
{
// ...
}
Create
Index
Show
Last updated
Was this helpful?
