Files
izyim/app/Traits/ChecksIfPackingListIsComplete.php
Omair Saleh 2546b4a7fa large commit
2019-05-27 10:41:51 +08:00

23 lines
462 B
PHP

<?php
namespace App\Traits;
trait ChecksIfPackingListIsComplete
{
public function checkPackingListIsComplete(array $packages): bool {
if(empty($packages)){
return false;
}
foreach ($packages as $package) {
if($package['width'] == 0 || $package['length'] == 0 || $package['height'] == 0 || $package['description'] == ''){
return false;
}
}
return true;
}
}