geofftech / laravel-tools
2.1.0
2024-10-12 02:04 UTC
Requires
- php: ^8.2
- illuminate/support: ^11.1
Requires (Dev)
- laravel/pint: ^1.17
README
Various useful features and functions
HasStorage Trait
- if a model has links to files in storage, this trait will ensure those files are removed when they are de-linked from the model.
- works with Soft Deletes.
- On update, removed any files no longer linked to the model.
- On delete, removes all linked files.
use HasStorage; protected $storage = [ 'image', 'banner', 'content' => 'image', 'content' => 'image,file', 'content' => ['image', 'file'], ];
For simple fields
- just pass the field name
For JSON fields
- we will extract out all properties in the JSON that match the property names passed.
- this can be a comma delimited string, an array, or a function that returns an array.
This assumes the public
disk. To set the disk
protected $storage_disk = 'private';
or to set per field
protected $storage_disk = [ 'content' => 'private' ];
ArrayHelper
toSnakeCase
- convert each key to snake case version.
- maps overrides.
HtmlHelper
hasText
- strips tags and white space to see if there is any text present.