geofftech/laravel-imagestyle

1.0.0 2024-04-21 11:01 UTC

This package is auto-updated.

Last update: 2024-04-21 11:03:52 UTC


README

Uses Intervention Images

Alias in app.php

  'aliases' => Facade::defaultAliases()->merge([
    'ImageStyle' => ImageStyle::class,
  ])->toArray(),

Sample Attribute

  public function thumbnailUrl(): Attribute
  {
    return Attribute::make(
      get: fn() => ImageStyle::thumbnail($this->image)
    );
  }