commit
c9290f3a89
7
presets.js
vendored
7
presets.js
vendored
@ -211,6 +211,10 @@ module.exports = {
|
||||
'0%': { boxShadow: '0 28px 0 -28px #ffffff' },
|
||||
'100%': { boxShadow: '0 28px 0 #ffffff' },
|
||||
},
|
||||
submit_second: {
|
||||
'0%': { boxShadow: '0 28px 0 -28px #55588b' },
|
||||
'100%': { boxShadow: '0 28px 0 #55588b' },
|
||||
},
|
||||
},
|
||||
|
||||
animation: {
|
||||
@ -218,7 +222,8 @@ module.exports = {
|
||||
pulsate_transparent: 'pulsate_transparent 1500ms ease infinite;',
|
||||
pulsate: 'pulsate 1500ms ease infinite;',
|
||||
spin: 'spin 1000ms infinite',
|
||||
submit: 'submit 0.7s ease alternate infinite'
|
||||
submit: 'submit 0.7s ease alternate infinite',
|
||||
submit_second: 'submit_second 0.7s ease alternate infinite'
|
||||
},
|
||||
|
||||
transitionProperty: {
|
||||
|
96
public/css/app.css
vendored
96
public/css/app.css
vendored
@ -9981,6 +9981,34 @@ input[type="date"]::-webkit-inner-spin-button,
|
||||
-webkit-animation: submit 0.7s ease alternate infinite;
|
||||
animation: submit 0.7s ease alternate infinite;
|
||||
}
|
||||
@-webkit-keyframes submit_second{
|
||||
|
||||
0%{
|
||||
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||
box-shadow: 0 28px 0 -28px #55588b;
|
||||
}
|
||||
|
||||
100%{
|
||||
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||
box-shadow: 0 28px 0 #55588b;
|
||||
}
|
||||
}
|
||||
@keyframes submit_second{
|
||||
|
||||
0%{
|
||||
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||
box-shadow: 0 28px 0 -28px #55588b;
|
||||
}
|
||||
|
||||
100%{
|
||||
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||
box-shadow: 0 28px 0 #55588b;
|
||||
}
|
||||
}
|
||||
.animate-submit_second{
|
||||
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||
animation: submit_second 0.7s ease alternate infinite;
|
||||
}
|
||||
.cursor-auto{
|
||||
cursor: auto;
|
||||
}
|
||||
@ -47105,6 +47133,11 @@ html[dir='rtl'] .el-input__suffix {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
html[dir='rtl'] .el-scrollbar__wrap {
|
||||
margin-left: -15px !important;
|
||||
margin-right: unset !important;
|
||||
}
|
||||
|
||||
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after {
|
||||
right: 15px !important;
|
||||
}
|
||||
@ -47306,6 +47339,27 @@ body{
|
||||
animation: submit 0.7s ease alternate infinite;
|
||||
}
|
||||
|
||||
@keyframes submit_second{
|
||||
|
||||
0%{
|
||||
content: var(--tw-content);
|
||||
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||
box-shadow: 0 28px 0 -28px #55588b;
|
||||
}
|
||||
|
||||
100%{
|
||||
content: var(--tw-content);
|
||||
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||
box-shadow: 0 28px 0 #55588b;
|
||||
}
|
||||
}
|
||||
|
||||
.before\:animate-submit_second::before{
|
||||
content: var(--tw-content);
|
||||
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||
animation: submit_second 0.7s ease alternate infinite;
|
||||
}
|
||||
|
||||
.before\:rounded-full::before{
|
||||
content: var(--tw-content);
|
||||
border-radius: 9999px;
|
||||
@ -47441,6 +47495,27 @@ body{
|
||||
animation: submit 0.7s ease alternate infinite;
|
||||
}
|
||||
|
||||
@keyframes submit_second{
|
||||
|
||||
0%{
|
||||
content: var(--tw-content);
|
||||
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||
box-shadow: 0 28px 0 -28px #55588b;
|
||||
}
|
||||
|
||||
100%{
|
||||
content: var(--tw-content);
|
||||
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||
box-shadow: 0 28px 0 #55588b;
|
||||
}
|
||||
}
|
||||
|
||||
.after\:animate-submit_second::after{
|
||||
content: var(--tw-content);
|
||||
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||
animation: submit_second 0.7s ease alternate infinite;
|
||||
}
|
||||
|
||||
.after\:rounded-full::after{
|
||||
content: var(--tw-content);
|
||||
border-radius: 9999px;
|
||||
@ -47693,6 +47768,11 @@ body{
|
||||
background-color: rgb(197 217 186 / var(--tw-bg-opacity));
|
||||
}
|
||||
|
||||
.disabled\:bg-gray-100:disabled{
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
||||
}
|
||||
|
||||
.disabled\:opacity-50:disabled{
|
||||
opacity: 0.5;
|
||||
}
|
||||
@ -47771,6 +47851,10 @@ body{
|
||||
right: 0.5rem;
|
||||
}
|
||||
|
||||
[dir="ltr"] .ltr\:left-3{
|
||||
left: 0.75rem;
|
||||
}
|
||||
|
||||
[dir="ltr"] .ltr\:-right-2{
|
||||
right: -0.5rem;
|
||||
}
|
||||
@ -47787,10 +47871,6 @@ body{
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
[dir="ltr"] .ltr\:left-3{
|
||||
left: 0.75rem;
|
||||
}
|
||||
|
||||
[dir="ltr"] .ltr\:left-8{
|
||||
left: 2rem;
|
||||
}
|
||||
@ -47942,6 +48022,10 @@ body{
|
||||
left: 0.5rem;
|
||||
}
|
||||
|
||||
[dir="rtl"] .rtl\:right-3{
|
||||
right: 0.75rem;
|
||||
}
|
||||
|
||||
[dir="rtl"] .rtl\:-left-2{
|
||||
left: -0.5rem;
|
||||
}
|
||||
@ -47958,10 +48042,6 @@ body{
|
||||
right: 0px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .rtl\:right-3{
|
||||
right: 0.75rem;
|
||||
}
|
||||
|
||||
[dir="rtl"] .rtl\:right-8{
|
||||
right: 2rem;
|
||||
}
|
||||
|
@ -40,7 +40,7 @@
|
||||
v-bind="money"
|
||||
masked
|
||||
disabled
|
||||
class="text-right disabled-money text-gray"
|
||||
class="ltr:text-right rtl:text-left disabled-money text-gray"
|
||||
></money>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="lg:absolute w-12 hidden lg:flex items-center lg:ltr:right-0 lg:rtl:left-0 xl:-top-12 cursor-pointer">
|
||||
<div class="relative lg:absolute w-12 flex items-center lg:ltr:right-0 lg:rtl:left-0 xl:-top-12 cursor-pointer">
|
||||
<input type="radio" :name="name" v-show="selected == '0'" @click="enabled = 1" value="1" id="enabled-1" v-model="selected" class="w-full h-full absolute right-0 z-20 opacity-0 cursor-pointer">
|
||||
<input type="radio" :name="name" v-show="selected == '1'" @click="enabled = 0" value="0" id="enabled-0" v-model="selected" class="w-full h-full absolute left-0 z-20 opacity-0 cursor-pointer">
|
||||
|
||||
|
@ -55,8 +55,16 @@
|
||||
<img :src="image_src" class="absolute top-0 right-2" alt="" />
|
||||
</div>
|
||||
|
||||
<base-button class="flex items-center justify-center text-base rounded-lg disabled:opacity-50 relative m-auto bottom-48 bg-white hover:bg-gray-100 text-purple rounded-md py-3 px-5 font-semibold btn-default" @click="finish()">
|
||||
<base-button
|
||||
class="relative flex items-center justify-center text-base rounded-lg m-auto bottom-48 bg-white hover:bg-gray-100 text-purple py-3 px-5 font-semibold disabled:bg-gray-100 "
|
||||
:disabled="anchor_loading"
|
||||
@click="finish()"
|
||||
>
|
||||
<i v-if="anchor_loading" class="animate-submit_second delay-[0.28s] absolute w-2 h-2 rounded-full left-0 right-0 -top-2.5 m-auto before:absolute before:w-2 before:h-2 before:rounded-full before:animate-submit_second before:delay-[0.14s] after:absolute after:w-2 after:h-2 after:rounded-full after:animate-submit_second before:-left-3.5 after:-right-3.5 after:delay-[0.42s]"></i>
|
||||
|
||||
<span :class="[{'opacity-0': anchor_loading}]">
|
||||
{{ translations.finish.create_first_invoice }}
|
||||
</span>
|
||||
</base-button>
|
||||
</div>
|
||||
</div>
|
||||
@ -93,6 +101,7 @@ export default {
|
||||
active: 3,
|
||||
route_url: url,
|
||||
image_src: app_url + "/public/img/wizard-modules.png",
|
||||
anchor_loading: false
|
||||
};
|
||||
},
|
||||
|
||||
@ -124,6 +133,7 @@ export default {
|
||||
|
||||
finish() {
|
||||
window.location.href = url + "/sales/invoices/create";
|
||||
this.anchor_loading = true;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
5
resources/assets/sass/app.css
vendored
5
resources/assets/sass/app.css
vendored
@ -436,6 +436,11 @@ html[dir='rtl'] .el-input__suffix {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
html[dir='rtl'] .el-scrollbar__wrap {
|
||||
margin-left: -15px !important;
|
||||
margin-right: unset !important;
|
||||
}
|
||||
|
||||
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after {
|
||||
right: 15px !important;
|
||||
}
|
||||
|
@ -16,7 +16,7 @@
|
||||
<x-form.group.email name="email" label="{{ trans('general.email') }}" ::disabled="{{ $user->hasPendingInvitation() ? 'true' : 'false' }}" />
|
||||
|
||||
@if (user()->id == $user->id)
|
||||
<x-form.group.checkbox name="change_password" :options="['1' => trans('auth.change_password')]" form-group-class="sm:col-span-3" @input="onChangePassword($event)" />
|
||||
<x-form.group.checkbox name="change_password" :options="['1' => trans('auth.change_password')]" form-group-class="sm:col-span-3" checkbox-class="sm:col-span-6" @input="onChangePassword($event)" />
|
||||
|
||||
<x-form.group.password name="password" :label="trans('auth.password.new')" v-show="show_password" />
|
||||
@endif
|
||||
|
@ -159,8 +159,8 @@
|
||||
v-model="row.total"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right mt-0 disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left mt-0 disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
@endif
|
||||
@ -186,7 +186,7 @@
|
||||
|
||||
<td colspan="4" class="px-0 pb-3">
|
||||
<div class="relative">
|
||||
<div class="absolute -top-6 left-3 flex items-center">
|
||||
<div class="absolute -top-6 ltr:left-3 rtl:right-3 flex items-center">
|
||||
@if (! $hideDiscount && in_array(setting('localisation.discount_location'), ['item', 'both']))
|
||||
<div class="text-left border-0 p-0 mr-16" v-if="!row.add_discount">
|
||||
<x-button type="button" class="text-xs text-purple" @click="onAddLineDiscount(index)" override="class">
|
||||
@ -252,7 +252,7 @@
|
||||
|
||||
@stack('discount_input_end')
|
||||
|
||||
<div class="flex items-center lg:absolute right-0">
|
||||
<div class="flex items-center lg:absolute ltr:right-0 rtl:left-0">
|
||||
<div class="text-right">
|
||||
<x-form.input.money
|
||||
name="discount_amount"
|
||||
@ -263,8 +263,8 @@
|
||||
v-model="row.discount_amount"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@ -327,7 +327,7 @@
|
||||
@stack('taxes_input_end')
|
||||
</div>
|
||||
|
||||
<div class="flex items-center lg:absolute right-0">
|
||||
<div class="flex items-center lg:absolute ltr:right-0 rtl:left-0">
|
||||
<div class="text-right">
|
||||
<x-form.input.money
|
||||
name="tax"
|
||||
@ -401,10 +401,10 @@
|
||||
@stack('taxes_input_end')
|
||||
</div>
|
||||
|
||||
<div class="flex items-center lg:absolute right-0">
|
||||
<div class="flex items-center lg:absolute ltr:right-0 rtl:left-0">
|
||||
<div class="text-right">
|
||||
<div class="required disabled text-right input-price disabled-money">
|
||||
<input type="tel" class="v-money form-control text-right" name="discount_amount" disabled="disabled" value="__">
|
||||
<input type="tel" class="v-money form-control ltr:text-right rtl:text-left" name="discount_amount" disabled="disabled" value="__">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -15,11 +15,11 @@
|
||||
<tr id="tr-subtotal">
|
||||
<td class="border-b-0 py-0"></td>
|
||||
|
||||
<td class="font-medium text-right border-r-0 border-b-0 align-middle pb-0 pr-0">
|
||||
<td class="font-medium ltr:text-right rtl:text-left border-r-0 border-b-0 align-middle pb-0 pr-0">
|
||||
{{ trans('invoices.sub_total') }}
|
||||
</td>
|
||||
|
||||
<td class="text-right border-b-0 long-texts py-0">
|
||||
<td class="ltr:text-right rtl:text-left border-b-0 long-texts py-0">
|
||||
<div>
|
||||
<x-form.input.money
|
||||
name="sub_total"
|
||||
@ -29,8 +29,8 @@
|
||||
v-model="totals.sub"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@ -46,11 +46,11 @@
|
||||
<tr id="tr-line-discount" v-if="totals.item_discount">
|
||||
<td class="border-t-0 py-0"></td>
|
||||
|
||||
<td class="text-right border-t-0 border-r-0 border-b-0 align-middle py-0 pr-0">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 border-r-0 border-b-0 align-middle py-0 pr-0">
|
||||
<span class="font-medium">{{ trans('invoices.item_discount') }}</span>
|
||||
</td>
|
||||
|
||||
<td class="text-right border-t-0 border-b-0 long-texts py-0 pr-0">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 border-b-0 long-texts py-0 pr-0">
|
||||
<div>
|
||||
<x-form.input.money
|
||||
name="item_discount"
|
||||
@ -60,8 +60,8 @@
|
||||
v-model="totals.item_discount"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@ -78,7 +78,7 @@
|
||||
<tr id="tr-discount">
|
||||
<td class="border-t-0 py-0"></td>
|
||||
|
||||
<td class="text-right border-t-0 border-r-0 border-b-0 align-middle py-0 pr-0">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 border-r-0 border-b-0 align-middle py-0 pr-0">
|
||||
<div v-if="show_discount_text" v-if="!totals.discount_text" @click="onAddDiscount()">
|
||||
<x-button.hover color="to-purple">
|
||||
{{ trans('invoices.add_discount') }}
|
||||
@ -110,7 +110,7 @@
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="relative text-right border-t-0 border-b-0 py-0 pr-0">
|
||||
<td class="relative ltr:text-right rtl:text-left border-t-0 border-b-0 py-0 pr-0">
|
||||
<div>
|
||||
<x-form.input.money
|
||||
name="discount_total"
|
||||
@ -120,8 +120,8 @@
|
||||
v-model="totals.discount"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@ -141,11 +141,11 @@
|
||||
<tr v-for="(tax, tax_index) in totals.taxes" :index="tax_index">
|
||||
<td class="border-t-0 pt-5 pb-0"></td>
|
||||
|
||||
<td class="text-right border-t-0 border-r-0 border-b-0 align-middle pt-5 pb-0 pr-0">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 border-r-0 border-b-0 align-middle pt-5 pb-0 pr-0">
|
||||
<span class="font-medium" v-html="tax.name"></span>
|
||||
</td>
|
||||
|
||||
<td class="text-right border-t-0 border-b-0 long-texts pt-5 pb-0 pl-3">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 border-b-0 long-texts pt-5 pb-0 pl-3">
|
||||
<div>
|
||||
<x-form.input.money
|
||||
name="tax_total"
|
||||
@ -155,8 +155,8 @@
|
||||
v-model="tax.total"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@ -172,7 +172,7 @@
|
||||
<td class="border-t-0 pt-5 pb-0"></td>
|
||||
|
||||
<td class="flex items-center justify-end pt-5 pb-0">
|
||||
<span class="w-16 text-right font-medium mt-2 ltr:mr-2 rtl:ml-2">
|
||||
<span class="w-16 ltr:text-right rtl:text-left font-medium mt-2 ltr:mr-2 rtl:ml-2">
|
||||
{{ trans('invoices.total') }}
|
||||
</span>
|
||||
|
||||
@ -195,7 +195,7 @@
|
||||
<x-form.input.hidden name="currency_rate" :value="(!empty($document)) ? $document->currency_rate : $currency->rate" />
|
||||
</td>
|
||||
|
||||
<td class="text-right border-t-0 long-texts pt-5 pb-0 pr-0">
|
||||
<td class="ltr:text-right rtl:text-left border-t-0 long-texts pt-5 pb-0 pr-0">
|
||||
<div>
|
||||
<x-form.input.money
|
||||
name="grand_total"
|
||||
@ -205,8 +205,8 @@
|
||||
v-model="totals.total"
|
||||
:currency="$currency"
|
||||
dynamicCurrency="currency"
|
||||
money-class="text-right disabled-money px-0"
|
||||
form-group-class="text-right disabled-money"
|
||||
money-class="ltr:text-right rtl:text-left disabled-money px-0"
|
||||
form-group-class="ltr:text-right rtl:text-left disabled-money"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@ -224,7 +224,7 @@
|
||||
]">
|
||||
<td class="border-t-0 pt-5 pb-0"></td>
|
||||
|
||||
<td colspan="2" class="text-right border-t-0 border-r-0 align-middle pt-5 pb-0 pr-0">
|
||||
<td colspan="2" class="ltr:text-right rtl:text-left border-t-0 border-r-0 align-middle pt-5 pb-0 pr-0">
|
||||
<akaunting-currency-conversion
|
||||
currency-conversion-text="{{ trans('currencies.conversion') }}"
|
||||
:price="(totals.total / form.currency_rate).toFixed(2)"
|
||||
|
@ -4,7 +4,7 @@
|
||||
</h2>
|
||||
|
||||
@if (! empty($description))
|
||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
||||
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||
{!! $description !!}
|
||||
</span>
|
||||
@endif
|
||||
|
@ -5,7 +5,7 @@
|
||||
<div class="relative cursor-pointer" x-on:click="{{ $type }} !== 'open' ? {{ $type }} = 'open' : {{ $type }} = 'close'">
|
||||
{!! $head !!}
|
||||
|
||||
<x-icon filled class="absolute right-0 top-0 transition-all transform" :icon="$icon" x-bind:class="{{ $type }} === 'open' ? 'rotate-180' : ''" />
|
||||
<x-icon filled class="absolute ltr:right-0 rtl:left-0 top-0 transition-all transform" :icon="$icon" x-bind:class="{{ $type }} === 'open' ? 'rotate-180' : ''" />
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
</h2>
|
||||
|
||||
@if (!empty($description))
|
||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
||||
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||
{!! $description !!}
|
||||
</span>
|
||||
@endif
|
||||
|
@ -6,7 +6,7 @@
|
||||
</h2>
|
||||
|
||||
@if (! empty($description))
|
||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
||||
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||
{!! $description !!}
|
||||
</span>
|
||||
@endif
|
||||
|
@ -11,7 +11,7 @@
|
||||
{{ trans('transers.slider.attachments') }}
|
||||
</div>
|
||||
|
||||
<span class="material-icons absolute right-0 top-0 transition-all transform" x-bind:class="attachment === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
<span class="material-icons absolute ltr:right-0 rtl:left-0 top-0 transition-all transform" x-bind:class="attachment === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
</div>
|
||||
|
||||
<div class="overflow-hidden transition-transform origin-top-left ease-linear duration-100"
|
||||
|
@ -12,7 +12,7 @@
|
||||
{!! trans('transactions.slider.create', ['user' => $transfer->owner->name, 'date' => $created_date]) !!}
|
||||
</div>
|
||||
|
||||
<span class="material-icons absolute right-0 top-0 transition-all transform" x-bind:class="create === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
<span class="material-icons absolute ltr:right-0 rtl:left-0 top-0 transition-all transform" x-bind:class="create === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
</button>
|
||||
|
||||
<div
|
||||
|
@ -14,7 +14,7 @@
|
||||
{!! trans('transfers.slider.transactions', ['user' => $transfer->owner->name]) !!}
|
||||
</div>
|
||||
|
||||
<span class="material-icons absolute right-0 top-0 transition-all transform" x-bind:class="transactions === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
<span class="material-icons absolute ltr:right-0 rtl:left-0 top-0 transition-all transform" x-bind:class="transactions === 1 ? 'rotate-180' : ''">expand_more</span>
|
||||
</button>
|
||||
|
||||
<div
|
||||
|
Loading…
x
Reference in New Issue
Block a user