This commit is contained in:
ericli1018
2025-06-13 12:24:35 +08:00
parent 1caae33c43
commit 6dfe3e0677
74 changed files with 1497 additions and 253 deletions

View File

@ -1,7 +1,7 @@
@extends('layouts.heading-page')
@section('title')
Support -
Support -
@endsection
@section('seo_keywords')
@ -11,11 +11,11 @@
@endsection
@section('css')
<link href="assets/css/page.css" rel="stylesheet"/>
<link href="/assets/css/page.css" rel="stylesheet"/>
@endsection
@section('breadcrumbs')
<a href="/support-technical">Support</a><span>/</span>Sales Inquiry
<a href="/support/customer">Support</a><span>/</span>Sales Inquiry
@endsection
@section('page-main')
@ -340,6 +340,12 @@
@section('script')
<script type="text/javascript">
$(document).ready(function(){
$('#country').find('option').each(function($idx, $elem){
if ($idx > 1){
$($elem).val($($elem).text());
}
});
});
</script>
@endsection