You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TrimLeadingZeroCast.php 343B

1234567891011121314
  1. <?php
  2. namespace App\Casts;
  3. use Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes;
  4. use Illuminate\Database\Eloquent\Model;
  5. class TrimLeadingZeroCast implements CastsInboundAttributes
  6. {
  7. public function set(Model $model, string $key, mixed $value, array $attributes): int
  8. {
  9. return (int) ltrim($value, '0');
  10. }
  11. }