⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
proposal
/
View File Name :
customer_detail.blade.php
@if(!empty($customer)) <div class="row"> <div class="col-md-5"> <h6>{{__('Bill to')}}</h6> <div class="bill-to"> @if(!empty($customer['billing_name'])) <small> <span>{{$customer['billing_name']}}</span><br> <span>{{$customer['billing_phone']}}</span><br> <span>{{$customer['billing_address']}}</span><br> <span>{{$customer['billing_city'] . ' , '.$customer['billing_state'].' , '.$customer['billing_country'].'.'}}</span><br> <span>{{$customer['billing_zip']}}</span> </small> @else <br> - @endif </div> </div> <div class="col-md-5"> <h6>{{__('Ship to')}}</h6> <div class="bill-to"> @if(!empty($customer['shipping_name'])) <small> <span>{{$customer['shipping_name']}}</span><br> <span>{{$customer['shipping_phone']}}</span><br> <span>{{$customer['shipping_address']}}</span><br> <span>{{$customer['shipping_city'] . ' , '.$customer['shipping_state'].' , '.$customer['shipping_country'].'.'}}</span><br> <span>{{$customer['shipping_zip']}}</span> </small> @else <br> - @endif </div> </div> <div class="col-md-2"> <a href="#" id="remove" class="text-sm">{{__(' Remove')}}</a> </div> </div> @endif