Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Dec 18, 2024
1 parent 9310849 commit c06d87d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Bazar.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ abstract class Bazar
*
* @var string
*/
public const VERSION = '1.1.3';
public const VERSION = '1.1.4';

/**
* The currency in use.
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/TaxRateResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ public function fields(Request $request): array
->sortable()
->required(),

Number::make(__('Rate'), 'rate')
Number::make(__('Rate'), 'value')
->required()
->rules(['required', 'numeric', 'min:0'])
->step(0.1)
->step(1)
->min(0)
->suffix('%')
->format(static function (Request $request, Model $model): string {
Expand Down

0 comments on commit c06d87d

Please sign in to comment.