forked from a1gard/xshop
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
PHTML
25 lines
1.1 KiB
PHTML
<script>
|
|
var isInit = false;
|
|
var uploadFormData = [];
|
|
var appName = `{{config('app.name')}}`;
|
|
window.translate = {};
|
|
window.translate.next = `{{__('Next')}}`;
|
|
window.translate.prev = `{{__('Previous')}}`;
|
|
window.translate.finishAndSave = `{{__('Finish and save')}}`;
|
|
window.translate.specialQuantity = `{{__('Special quantity')}}`;
|
|
window.translate.choose = `{{__('Choose one')}}`;
|
|
window.translate.remove = `{{__('Remove')}}`;
|
|
window.translate.price = `{{__('Price')}}`;
|
|
window.translate.count = `{{__('Count')}}`;
|
|
window.translate.from = `{{__('From')}}`;
|
|
window.translate.to = `{{__('To')}}`;
|
|
window.translate.all = `{{__('All')}}`;
|
|
window.translate.priceRange = `{{__('Price range')}}`;
|
|
window.translate.true = `{{ __('True') }}`;
|
|
window.translate.false = `{{ __('False') }}`;
|
|
window.translate.errMobile = `{{ __('Incorrect mobile number') }}`;
|
|
window.translate.discountCodeError= `{{ __('Discount code incorrect') }}`;
|
|
window.translate.discountCodeAccept= `{{ __('Discount code accepted') }}`;
|
|
</script>
|
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|