Skip to content

Instantly share code, notes, and snippets.

@robzlabz
Created June 2, 2021 05:40
Show Gist options
  • Save robzlabz/9b463cf266b25dc52731346d24abb7d0 to your computer and use it in GitHub Desktop.
Save robzlabz/9b463cf266b25dc52731346d24abb7d0 to your computer and use it in GitHub Desktop.
Spatie Media Library with Livewire Trait
<?php
namespace App\Traits;
trait LivewireMedia
{
public function addMediaTo($media, $collectionName)
{
$this->addMedia($media->getRealPath())
->usingName(pathinfo($media->getClientOriginalName(), PATHINFO_BASENAME))
->usingFileName($media->getClientOriginalName())
->toMediaCollection($collectionName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment