@extends('layouts.master-layouts') @section('title') {{ __('Invoice Details') }} @endsection @section('content') @component('components.breadcrumb') @slot('title') Invoice Details @endslot @slot('li_1') Dashboard @endslot @slot('li_2') Invoice List @endslot @slot('li_3') Invoice Details @endslot @endcomponent
{{ __('No.') }} | {{ __('Title') }} | {{ __('Amount') }} |
---|---|---|
{{ $loop->index + 1 }} | {{ $item->title }} | ${{ $item->amount }} |
{{ __('Sub Total') }} | ${{ $sub_total }} | |
{{ __('Tax (5%)') }} | ${{ ($sub_total * 5) / 100 }} | |
{{ __('Total') }} |
${{ $sub_total + ($sub_total * 5) / 100 }} |