@extends('layouts.app') @push('page-styles') @endpush @section('page-content')
{{ __('Edit Estimate') }}
@csrf @method("PUT")
@if (!empty($estimate->items) && $estimate->items->count() > 0) @foreach ($estimate->items as $item) @endforeach @else @endif
{{ __('Item') }} {{ __('Description') }} {{ __('Unit Cost') }} {{ __('Qty') }} {{ __('Amount') }}
{{ __('Sub Total') }}
{{ __('Tax') }} (%)
{{ __('Discount') }} %
{{ __('Grand Total') }} {{ LocaleSettings('currency_symbol') }}
@endsection @push('page-scripts') @endpush