codicastudio / field-agent
A random Codica Studio package.
1.0.0
2020-09-25 01:53 UTC
Requires
- php: ^7.4 || ^8.0
This package is auto-updated.
Last update: 2024-10-25 13:41:01 UTC
README
Description
This field give the ability to hide fields from your resources table on mobile screens for a better responsive concept.
Screenshots
Installation
This package can be installed through Composer.
composer require outhebox/nova-fields-agent
Example Usage
Note: All Fields Supported "Text Field only for example".
// Important !!! use Outhebox\NovaFieldsAgent\HasNovaFieldsAgent; class Example extends Resource { use HasNovaFieldsAgent; // Important !!! /** * Get the fields displayed by the resource. * * @param \Illuminate\Http\Request $requestµµ * @return array */ public function fields(Request $request) { Text::make('ExampleField') ->hideFromDetailOnMobile() // Hide the field from details page on Mobile ->hideFromDetailOnTablet() // Hide the field from details page on Tablet ->HideFromIndexOnMobile() // Hide the field from index on Mobile ->HideFromIndexOnTablet() // Hide the field from index on Tablet ->sortable(), } }