@extends('layouts.app') @section('content')

{{__("Bills")}}

@foreach($bills as $bill) @endforeach
ID {{__("Number")}} {{__("Date")}} {{__("Amount")}} {{__("Date of payment")}} {{__("Status")}} Pdf
{{$bill->id}} {{$bill->number}} {{date('d.m.Y.', strtotime($bill->date))}} {{number_format($bill->ammount, 2, ',', '.')}} @if($bill->payment_date){{date('d.m.Y', strtotime($bill->payment_date))}}@endif @if($bill->status == 1)
{{__("payed")}}
@else
{{__("not payed")}}
@endif
@if($bill->pdf_url) @endif @if($isDeveloper)@endif
@endsection