yaroslawww/laravel-inertia-dashboard

Laravel inertia dashboard development kit for quicker MVP ot live projects.
6
Install
composer require yaroslawww/laravel-inertia-dashboard
Latest Version:1.0.0
PHP:^8.1
License:MIT
Last Updated:Nov 24, 2022
Links: GitHub  ·  Packagist
Maintainer: yaroslawww

Laravel think kit.

Packagist License Packagist Version Total Downloads Build Status Code Coverage Scrutinizer Code Quality

Laravel inertia dashboard development kit for quicker MVP ot live projects.

Installation

Install the package via composer:

composer require yaroslawww/laravel-inertia-dashboard

Optionally you can publish the config file with:

php artisan vendor:publish --provider="InertiaDashboardKit\ServiceProvider" --tag="config"

Usage

return Inertia::render('Admin/Issue/ShowPage', [
            'translations' => get_ads_translations('issue-page'),
            'indexData' => IndexData::make(
                $request,
                (new AdvAsset())->getMorphClass(),
                $lineItemIssue->assets()
            )
                                    ->perPage(9)
                                    ->useResource(
                                        AttachedAssetResource::class,
                                        [
                                            'actions' => function (AdvAsset $entity, $user, $request) use ($lineItemIssue) {
                                                $actions = [];
                                                if (
                                                    $user->can('update', $lineItemIssue)
                                                    && !$entity->pivot
                                                        ->isStatus(\App\Domain\Advertising\Enums\AssetStatus::APPROVED)
                                                ) {
                                                    $actions[] = (new DetachAction())
                                                        ->setDetachable($lineItemIssue, 'assets');
                                                }

                                                return $actions;
                                            },
                                        ]
                                    )
                                    ->bulkActions([])
                                    ->columns($columns)
                                    ->toResponseArray(),
        ]);

Credits

  • Think Studio

Related Packages

adiamond/cruddy

Backend interface for handling CRUD operations on your Laravel Eloquent models.

1,421 0
kalnoy/cruddy

Backend interface for handling CRUD operations on your Laravel Eloquent models.

4,985 162
kodicms/dashboard

The official KodiCMS Dashboard module

617 1
hieu-le/laravel-dashboard

A starting template for Laravel 5 dashboards

2,587 31