I'm trying to execute this query according to the documentation but its returning the error array_key_exists(): The first argument should be either a string or an integer
https://laravel.com/docs/5.8/queries#where-clauses
$imagessize = $galleryObj->photos->where([
['gallery_id','=', $gallery->id],
['delete','=',0],
])->sum('filesize');