Skip to content

Commit

Permalink
increase pallets note size
Browse files Browse the repository at this point in the history
  • Loading branch information
inikoo committed Feb 19, 2025
1 parent 96c749e commit aea9225
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Actions/Fulfilment/Pallet/StorePallet.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function rules(): array
'sometimes',
Rule::enum(PalletTypeEnum::class)
],
'notes' => ['sometimes', 'nullable', 'string', 'max:1024'],
'notes' => ['sometimes', 'nullable', 'string', 'max:16384'],


'warehouse_id' => [
Expand Down
2 changes: 1 addition & 1 deletion app/Actions/Fulfilment/Pallet/UpdatePallet.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function rules(): array

],
'location_id' => ['sometimes', 'nullable', Rule::exists('locations', 'id')],
'notes' => ['sometimes','nullable', 'string', 'max:1024'],
'notes' => ['sometimes','nullable', 'string', 'max:16384'],
'received_at' => ['sometimes','nullable', 'date'],
'booked_in_at' => ['sometimes', 'nullable', 'date'],
'storing_at' => ['sometimes', 'nullable', 'date'],
Expand Down

0 comments on commit aea9225

Please sign in to comment.