@extends('layouts.app') @section('title', __('Invoices')) @section('content')
# | {{ __('Number') }} | {{ __('Date') }} | {{ __('From') }} | {{ __('To') }} | {{ __('Total') }} | {{ __('Amount Due') }} | {{ __('Project') . ' / ' . __('Customer') }} | {{ __('Items') }} | {{ __('Invoice Actions') }} | {{ __('Notes') }} |
---|---|---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ env('invoices_shortcut') . $result->id }} | {{ $result->date }} | {{ $result->from }} | {{ $result->to }} | {{ $result->total }} | {{ $result->due }} | @if($result->customer_id != null) {{ $result->customer->name }} @else {{ $result->project->number }} ({{ $result->project->customer->name }}) @endif |
|
{{ $result->notes }} | {{ __('No Results') }} | @endif