Skip to content

Instantly share code, notes, and snippets.

@abishekrsrikaanth
Last active March 23, 2020 07:15
Show Gist options
  • Save abishekrsrikaanth/24ce480e0ef34fa218e99489cbab5661 to your computer and use it in GitHub Desktop.
Save abishekrsrikaanth/24ce480e0ef34fa218e99489cbab5661 to your computer and use it in GitHub Desktop.
<?php
public function fields(Request $request)
{
return [
Textarea::make('Description')
->displayUsing(function($description) {
return Str::substr($description, 0, 100) . '....';
})->onlyOnIndex(),
Textarea::make('Description')->hideFromIndex(),
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment