A Pen by Mbutuh Escarter Brieno on CodePen.
#!/bin/sh | |
# If you would like to do some extra provisioning you may | |
# add any commands you wish to this file and they will | |
# be run after the Homestead machine is provisioned. | |
apt-get update | |
# if not installed install it | |
apt-get install unzip |
If you want to delete a model with related models you can use Laravel model events. There is also a special case if your models cascade.
Lets say you have Folder and File Eloquent models that are related and use SoftDeletes trait and when you delete a folder you also want to delete files in folder and all subfolders with files.
In the boot
method or Folder model you catch delete
and restore
events (actually deleting
and restoring
events that trigger before restoring or deleting happens). You can delete/restore all files in folder you're deleting/restoring with $folder->files()->delete();
and $folder->files()->withTrashed()->restore();
.
Folders on the other hand cascade (folder in a folder in a folder) and because events do not trigger if you don't pull the models (->get()
method), the model events won't trigger for subfolders. That's why you need to pull the folders and iterate trough them (->each()
method) and delete/restore them.
You could use database CASCADE feature but that does
use Illuminate\Support\Facades\Storage; | |
use Carbon\Carbon; | |
function hlp_file_upload($fileObj, $s3Path, $newDimension=null, $fname=null, $watermark = true) | |
{ | |
$basePath = storage_path('app/uploads'); | |
$ext = $fileObj->getClientOriginalExtension(); | |
$ext = empty($ext) ? 'jpg' : $ext; | |
$oldFileName = $fname ? $fname : md5(uniqid(empty($_SERVER['SERVER_ADDR']) ? '' : $_SERVER['SERVER_ADDR'], true)) . '.' . $ext ; |