%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Trix/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Trix/PruneStaleAttachments.php |
<?php namespace Laravel\Nova\Trix; class PruneStaleAttachments { /** * Prune the stale attachments from the system. * * @return void */ public function __invoke() { PendingAttachment::where('created_at', '<=', now()->subDays(1)) ->orderBy('id', 'desc') ->chunk(100, function ($attachments) { $attachments->each->purge(); }); } }