spatie / laravel-medialibrary

Associate files with Eloquent models
https://spatie.be/docs/laravel-medialibrary
MIT License
5.78k stars 1.08k forks source link

Add count media functionality #3523

Closed salamwaddah closed 9 months ago

salamwaddah commented 9 months ago

I would like to add countMedia as a fluent alternative to

Here's my use case in blade


// before
@if($model->getMedia()->count() > 1)
@endif

// after
@if($model->countMedia() > 1)
@endif

A similar PR #1582 closed 5 years ago but I wish this is reconsidered

freekmurze commented 9 months ago

Thanks, but I'm going to pass on this to keep the package simple.