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.
30 lines
881 B
PHTML
30 lines
881 B
PHTML
2 years ago
|
@extends('website.emptylayout')
|
||
|
@section('title')
|
||
|
{{__("Invoice")}} - {{$invoice->id}}
|
||
|
@endsection
|
||
|
@section('content')
|
||
|
<div id="main-conetent" class="container mt-5">
|
||
|
<img src="{{$qr->render(route('invoice.qr',$invoice->hash))}}" alt="qr code" style="max-width: 200px" class="float-end">
|
||
|
<h2 class="pt-4">
|
||
|
{{config('app.name')}}
|
||
|
</h2>
|
||
|
<hr>
|
||
|
<div class="row">
|
||
|
<div class="col-md">
|
||
|
<h4>
|
||
|
{{__("Invoice id")}}:
|
||
|
{{$invoice->id}}
|
||
|
</h4>
|
||
|
</div>
|
||
|
<div class="col-md">
|
||
|
<h4>
|
||
|
{{__("Invoice status")}}:
|
||
|
{{__($invoice->status)}}
|
||
|
</h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@include('component.invoice',$invoice)
|
||
|
</div>
|
||
|
@endsection
|