@extends('adminlte::page')

@section('title', 'View Profile ')

@section('content')
<div class="wizard row">
    <div class="col-md-12 pd-4">
      <div class="box ">
        <!-- title of the page and heading-->
        <div class="box-header with-border main-box">
          <i class="ion ion-clipboard"></i>
          <h3 class="box-title">Invoice</h3>
        </div>
        <!--end title-->
        <!-- start body of the page--> 
        <!-- start box body --> 
        <div class="box-body">
            
            <div class="col-12">
                <table width="100%">
                    <tr> 
                        <td rowspan="6" width="20%" valign="top">Logo</td>
                        <td style="text-align: right;"><span style="padding-right: 325px;">{{$invoices->company}}</span></td>
                    </tr>
                    <tr>
                        <td><span style=""><b>To :</b> {{$invoices->email}}</span></td>
                    </tr>
                    <tr>
                        <td><span style=""><b>Date : </b> {{$invoices->invoice_date}}</span></td>
                    </tr>
                    <tr>
                        <td><span style=""><b>Product :</b> {{$invoices->plan_name}}</span></td>
                    </tr>
                    <tr>
                        <td><span style=""><b>Invoice Number :</b> {{$invoices->invoice_number}}</span></td>
                    </tr>
                    <br><br><br>
                    <tr>
                        <td colspan="2">
                            <br><br><br>
                            <table class="table">
                                <tr>
                                    <td width="15%"><b>Description</b></td>
                                    <td width="20%"><b>Date</b></td>
                                    <td width="15%"><b>Amount</b></td>
                                </tr>
                                <tr>
                                    <td>{{$invoices->sub_name}}</td>
                                    <td>{{$invoices->start_time}} - {{$invoices->end_time}}</td>
                                    <td>{{$invoices->currency}}{{$invoices->amount}}</td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </div>
                    
        </div>
        <!-- /.box-body -->
        <div class="box-footer t_cen">
            
        </div>   <!-- end of div box-footer t_cen -->
      </div>   <!-- end of div box -->
    </div>   <!-- end of div col-md-12 pd-4 -->  
</div>  <!-- end of div wizard row -->

@endsection