%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/Attachment.php |
<?php namespace Laravel\Nova\Trix; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Storage; class Attachment extends Model { /** * The table associated with the model. * * @var string */ protected $table = 'nova_trix_attachments'; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = []; /** * Purge the attachment. * * @return void */ public function purge() { Storage::disk($this->disk)->delete($this->attachment); $this->delete(); } }