mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
|
|
use App\Models\Order;
|
|
|
|
trait ChecksIfFirstOrder
|
|
{
|
|
public function checkPackingListIsComplete(int $importerId): bool {
|
|
return Order::Where('company_id', $importerId)->get()->isEmpty();
|
|
}
|
|
|
|
} |