Skip to content

Instantly share code, notes, and snippets.

View belzaaron's full-sized avatar

Aaron Belz belzaaron

View GitHub Profile
@belzaaron
belzaaron / InSomeModelWithMedia.php
Last active February 25, 2022 22:10
This provides a model-level control for URL generator classes for spatie/laravel-medialibrary. See PR: https://github.com/spatie/laravel-medialibrary/pull/2809. Tested on: spatie/laravel-medialibrary version: 10.1.1
/**
* Get the classpath of the url generator used by the model.
*
* @return string
*/
public function getUrlGeneratorClass(): string
{
return \App\Services\SpatieMediaLibrary\SomeUrlGenerator::class;
}