admin-platform/admin-bundle
Symfony bundle for building an admin platform using Sylius components. Install via Composer and register PlatformAdminBundle in AppKernel to add admin tooling and infrastructure to your Symfony application.
This Bundle implement admin platform based on Sylius components.
Step 1. Install via Composer
composer require admin-platform/admin-bundle "dev-master"
Step 2. Add to AppKernel.php
class AppKernel extends Kernel
{
/**
* {@inheritdoc}
*/
public function registerBundles()
{
$bundles = [
// ...
new Platform\Bundle\AdminBundle\PlatformAdminBundle(),
// ...
];
}
}
How can I help you explore Laravel packages today?