Skip to content

Instantly share code, notes, and snippets.

@yamin27
Last active August 20, 2023 09:39
Show Gist options
  • Save yamin27/aadbf38456a41d391a52bbdc323a7c7d to your computer and use it in GitHub Desktop.
Save yamin27/aadbf38456a41d391a52bbdc323a7c7d to your computer and use it in GitHub Desktop.
pos quantity show
//line 177
@if( $formatted_max_quantity > 0)
<p class="help-block text-success"><small> {{__('validation.custom-messages.quantity_not_available', ['qty'=> $formatted_max_quantity, 'unit' => $product->unit ])}} </small></p>
@else
<p class="help-block text-red"><small> {{__('validation.custom-messages.quantity_not_available', ['qty'=> $formatted_max_quantity, 'unit' => $product->unit ])}} </small></p>
@endif
custom massage chnage
'custom-messages' => [
'quantity_not_available' => 'Only :qty :unit available',
'this_field_is_required' => 'This field is required'
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment