mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
23 lines
462 B
PHP
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;
|
|
}
|
|
|
|
} |