A Laravel Nova tool to have a grid system
codenco-dev/nova-grid-system is a Laravel package for a laravel nova tool to have a grid system.
It currently has 81 GitHub stars and 351.213 downloads on Packagist (latest version v2.0.1).
Install it with composer require codenco-dev/nova-grid-system.
Discover more Laravel packages by codenco-dev
or browse all Laravel packages to compare alternatives.
Last updated
#Nova grid system for Laravel Nova
You can install this package via composer:
composer require codenco-dev/nova-grid-system
Then, you will need to register the tool within the NovaServiceProvider.php:
use CodencoDev\NovaGridSystem\NovaGridSystem;
/**
* Get the tools that should be listed in the Nova sidebar.
*
* @return array
*/
public function tools()
{
return [
//other tools
new NovaGridSystem
];
}
This package allows you to define field sizes for detail, update or resource creation pages with tailwind CSS classes.
You can use the size method on your field to add a meta property for each page. All Tailwind fluid classes for size can be used.
See https://tailwindcss.com/docs/width/#fluid-width
If you don't want to change the size of fields on each page, you can use methods to filter the effect:
sizeOnCreatingsizeOnUpdatingsizeOnFormssizeOnDetailAutomatically, with the default configuration, the field labels are stacked.
If you don't want this, you can use the stacked method with a parameter value of false.
As for previous point, you can do it wherever you want with:
stackedOnCreatingstackedOnUpdatingstackedOnFormsstackedOnDetailOn the detail page, Nova automatically remove its lower border for the last field. In this package, it's not possible to calculate the last field, so you can delete it yourself. You can use these methods:
removeBottomBorderOnCreatingremoveBottomBorderOnUpdatingremoveBottomBorderOnFormsremoveBottomBorderOnDetailThis code uses the simplest method of configuration::
public function fields(Request $request)
{
return [
ID::make()->sortable(),
Gravatar::make()->maxWidth(50),
Text::make('Name')
->size('w-1/3')
->sortable()
->rules('required', 'max:255'),
Text::make('Email')
->size('w-1/3')
->sortable()
->rules('required', 'email', 'max:254')
->creationRules('unique:users,email')
->updateRules('unique:users,email,{{resourceId}}'),
Password::make('Password')
->size('w-1/3') // Only on forms, because we use onlyOnForms method with
->onlyOnForms()
->creationRules('required', 'string', 'min:8')
->updateRules('nullable', 'string', 'min:8'),
];
}
In this previous example, sizes are ok in forms pages but not in detail pages. This code presents several configurations depending on the context and uses different methods
/**
* Get the fields displayed by the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function fields(Request $request)
{
return [
ID::make()->sortable(),
Gravatar::make()->maxWidth(50),
Text::make('Name')
->sizeOnDetail('w-1/2')
->stackedOnDetail(false)
->sizeOnForms('w-1/3')
->sortable()
->rules('required', 'max:255'),
Text::make('Email')
->sizeOnDetail('w-1/2')
->stackedOnDetail(false)
->sizeOnForms('w-1/3')
->sortable()
->rules('required', 'email', 'max:254')
->creationRules('unique:users,email')
->updateRules('unique:users,email,{{resourceId}}'),
Password::make('Password')
->size('w-1/3') // Only on forms, because we use onlyOnForms method with
->onlyOnForms()
->creationRules('required', 'string', 'min:8')
->updateRules('nullable', 'string', 'min:8'),
Date::make('Created At')
->hideWhenCreating()
->size('w-1/2')
->stacked(false)
->stackedOnForms(true)
->removeBottomBorderOnForms(),
Date::make('Updated At')
->hideWhenCreating()
->size('w-1/2')
->stacked(false)
->stackedOnForms(true)
->removeBottomBorderOnForms(),
Badge::make('Status 1', function () {
return 'info';
})->size('w-1/6')->removeBottomBorder(),
Badge::make('Status 2', function () {
return 'success';
})->size('w-1/6')->removeBottomBorder(),
Badge::make('Status 3', function () {
return 'warning';
})->size('w-1/6')->removeBottomBorder(),
Badge::make('Status 4', function () {
return 'info';
})->size('w-1/6')->removeBottomBorder(),
Badge::make('Status 5', function () {
return 'success';
})->size('w-1/6')->removeBottomBorder(),
Badge::make('Status 6', function () {
return 'warning';
})->size('w-1/6')->removeBottomBorder(),
];
}
Do you want go fast to configure your app ?
With the HasDefaultSize trait, you can use defined default values.
You can use this trait in each resource where you want or on the App\Nova\Resource file if you want have default
values on each resource automatically.
You be able to define default values on several ways :
public function defaultFieldSize()
{
return 'w-1/8';
}
Methods can be : defaultFieldSize,defaultFieldSizeOnDetail,defaultFieldSizeOnCreating,defaultFieldSizeOnUpdating.
You can disable each "automatic" feature for each type of page with the nova-grid-system.php config file.
You can define default sizes for every fields.
To publish it, you can use this command:
php artisan vendor:publish --tag="nova-grid-system"
The MIT License (MIT). Please see License File for more information.
This package is inspired by a deleted package by Eduardo Geschonke https://github.com/jobcerto