Skip to content

Instantly share code, notes, and snippets.

@abishekrsrikaanth
Last active March 30, 2020 08:16
Show Gist options
  • Select an option

  • Save abishekrsrikaanth/54d4a0db8affa9fa4ed2bb4d8c8b55d7 to your computer and use it in GitHub Desktop.

Select an option

Save abishekrsrikaanth/54d4a0db8affa9fa4ed2bb4d8c8b55d7 to your computer and use it in GitHub Desktop.
<?php
Textarea::make('Description')->displayUsing(function($description) {
return Str::substr($description, 0, 100) . '....';
}),
@juampi92
Copy link

Small thing, but maybe https://laravel.com/docs/5.8/helpers#method-str-limit will fit your needs better. Nice article

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment