Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

DocumentNumber.php 339B

123456789101112
  1. <?php
  2. namespace App\Interfaces\Utility;
  3. use Illuminate\Database\Eloquent\Model;
  4. interface DocumentNumber
  5. {
  6. public function getNextNumber(?Model $model, ?string $type, int | string $number, string $prefix, int | string $digits, ?bool $padded = true): string;
  7. public function incrementNumber(Model $model, string $type): void;
  8. }