belongsTo(Folder::class); } public function getSize($location) { $fileSize = Storage::disk('local')->size($location) / 1024 / 1024; $fileSize = round($fileSize, 2); return $fileSize; } }