Memperbaiki landing page
This commit is contained in:
parent
6029c96a2f
commit
0c47be8e7f
@ -894,7 +894,7 @@ class PembeliController extends Controller
|
||||
';
|
||||
}
|
||||
|
||||
// if($row->status_transaksi == 'sent'){
|
||||
if($row->status_transaksi == 'sent'){
|
||||
$html_code .= '
|
||||
<li><a class="dropdown-item" data-toggle="modal"
|
||||
data-target="#modalFinish"
|
||||
@ -902,7 +902,7 @@ class PembeliController extends Controller
|
||||
href="#">Selesaikan</a>
|
||||
</li>
|
||||
';
|
||||
// }
|
||||
}
|
||||
|
||||
$html_code .= '
|
||||
</ul>
|
||||
|
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.eot
Normal file
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.eot
Normal file
Binary file not shown.
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.html
Normal file
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.html
Normal file
Binary file not shown.
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.ttf
Normal file
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.ttf
Normal file
Binary file not shown.
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.woff
Normal file
BIN
public/assets/css/fonts/materialdesignicons-webfont3e71.woff
Normal file
Binary file not shown.
BIN
public/assets/css/fonts/materialdesignicons-webfontd41d.eot
Normal file
BIN
public/assets/css/fonts/materialdesignicons-webfontd41d.eot
Normal file
Binary file not shown.
35986
public/assets/css/home/materialdesignicons.min.css
vendored
35986
public/assets/css/home/materialdesignicons.min.css
vendored
File diff suppressed because it is too large
Load Diff
@ -134,13 +134,13 @@
|
||||
<img src="{{ asset('assets/images/features/phone.png') }}" alt="" width="650"
|
||||
class="img-fluid">
|
||||
|
||||
<div class="watch-video">
|
||||
{{-- <div class="watch-video">
|
||||
<a href="#" class="video-play-icon watch text-white" data-bs-toggle="modal"
|
||||
data-bs-target="#watchvideomodal">
|
||||
<i
|
||||
class="mdi mdi-play text-center d-inline-block rounded-pill text-light bg-primary fs-30 avatar-lg me-1"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div> --}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3">
|
||||
@ -157,7 +157,7 @@
|
||||
</div>
|
||||
|
||||
|
||||
<div class="modal fade bd-example-modal-lg" id="watchvideomodal" data-keyboard="false" tabindex="-1"
|
||||
{{-- <div class="modal fade bd-example-modal-lg" id="watchvideomodal" data-keyboard="false" tabindex="-1"
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered modal-dialog modal-lg">
|
||||
<div class="modal-content hero-modal-0 bg-transparent">
|
||||
@ -167,7 +167,7 @@
|
||||
</video>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
</section>
|
||||
<!-- end home section -->
|
||||
|
@ -271,6 +271,16 @@
|
||||
<span>{{ $transaction->deskripsi == null ? '---' : $transaction->deskripsi }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>Status Transaksi :</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<span>{{ $transaction->status_transaksi }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="data-pesanan" style="margin-top: 10px;">
|
||||
<thead>
|
||||
|
@ -51,20 +51,18 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@if (in_array($transaction->status_pembayaran, ['settlement', 'capture']))
|
||||
<div class="col-md-6">
|
||||
<address>
|
||||
<strong>Status Pembayaran:</strong><br>
|
||||
{{ ucwords($transaction->status_pembayaran) }}<br>
|
||||
</address>
|
||||
</div>
|
||||
<div class="col-md-6 text-md-right">
|
||||
<address>
|
||||
<strong>Tanggal Pembayaran:</strong><br>
|
||||
{{ $transaction->created_at->format('d M Y, g:i') }}<br><br>
|
||||
</address>
|
||||
</div>
|
||||
@endif
|
||||
<div class="col-md-6">
|
||||
<address>
|
||||
<strong>Status Pembayaran:</strong><br>
|
||||
{{ ucwords($transaction->status_pembayaran) }}<br>
|
||||
</address>
|
||||
</div>
|
||||
<div class="col-md-6 text-md-right">
|
||||
<address>
|
||||
<strong>Tanggal Pembayaran:</strong><br>
|
||||
{{ $transaction->tanggal_transaksi == null ? '----' : date('d M Y, g:i', strtotime($transaction->tanggal_transaksi)) }}<br><br>
|
||||
</address>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user