Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Data Grid Bundle Laravel Package

ano/data-grid-bundle

View on GitHub
Deep Wiki
Context7

AnoDataGridBundle

Installation

Usage

Building the grid

class DashboardController extends AdminController
{
    public function gridAction(Request $request, $page = 1, $pageSize = 10)
    {
        $factory = $this->getDataGridFactory();
        $grid = $factory->createBuilder('my_grid')
            ->addColumn('id', 'text', array(
                'label' => 'ID',
                'property_path' => 'id',
            ))
            ->addColumn('title', 'text', array(
                'label' => 'Title',
                'property_path' => 'title',
            ))
            ->addColumn('author', 'text', array(
                'label' => 'Author',
                'property_path' => 'author.name',
            ))
            ->addColumn('date', 'date', array(
                'label' => 'Released at',
                'property_path' => 'releasedAt',
            ))
            ->addColumn('price', 'money', array(
                'label' => 'Price',
                'property_path' => 'price',
            ))
            ->addColumn('edit', 'action', array(
                'label' => 'Edit',
                // 'callback' => function() {

                },
            ))
            ->getDataGrid()
        ;

        return $this->render('MyAdminBundle::grid.html.twig', array(
            'grid' => $grid->createView(),
        ));
    }

    /**
     * @return \Ano\DataGrid\DataGridFactoryInterface
     */
    public function getDataGridFactory()
    {
        return $this->get('ano_data_grid.data_grid.factory');
    }
}

Rendering the grid

{% data_grid_theme grid 'MyAdminBundle::grid_theme.html.twig' %}

<table class="datagrid">
    {{ grid_head(grid) }}
    {{ grid_body(grid) }}
    {{ grid_foot(grid) }}
</table>
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
terminal42/code-quality-tools
codifyo/ts-generator-bundle
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity