geofftech/laravel-tools

2.1.0 2024-10-12 02:04 UTC

This package is auto-updated.

Last update: 2025-03-12 05:56:51 UTC


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.