Skip to content

Commit

Permalink
One shipping method title tests (rapidez#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin authored Sep 3, 2024
1 parent 6dd039e commit a7dd2ec
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions resources/views/checkout/steps/credentials.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,11 @@
<p class="text-2xl font-bold">
@lang('Shipping method')
</p>
<x-rapidez::radio
v-for="(method, index) in checkout.shipping_methods"
v-model="checkout.shipping_method"
v-bind:value="method.carrier_code+'_'+method.method_code"
v-bind:dusk="'method-'+index"
>
@{{ method.method_title }}
</x-rapidez::radio>
<template v-for="(method, index) in checkout.shipping_methods">
<x-rapidez::radio v-model="checkout.shipping_method" v-bind:value="method.carrier_code+'_'+method.method_code" v-bind:dusk="'method-'+index">
@{{ method.method_title }}
</x-rapidez::radio>
</template>
</div>
<div class="flex flex-col gap-4">
<p class="text-2xl font-bold">
Expand Down

0 comments on commit a7dd2ec

Please sign in to comment.