@extends('both.template')
@section('title', 'DETAILS ESTIMATION | OPTIMIA')
@section('styleSheets')
@endsection
@section('content')
- {{ $estimateBoard->societyName }}
- 262 BKK, Bè Klikamé
- 05 BP 267 Lomé - Togo
- +228 93 05 53 53 | +228 96 05 53 53
#{{ $estimateBoard->estimateCode }}
- Création: {{ App\Utils\Utils::getDBDateFormat($estimateBoard->estimateCreatedDate, true) }}
- Expiration: {{ App\Utils\Utils::getDBDateFormat($estimateBoard->estimateExpiryDate, true) }}
Client: #{{ $estimateBoard->codeClient }}
-
{{ $estimateBoard->clientFullName }}
- {{ $estimateBoard->clientAdress }}
- {{ $estimateBoard->clientEmail }}
- {{ $estimateBoard->clientPhone }}
Details Estimation:
-
Total:
- Taxe: {{ $estimateBoard->taxePercent }}%
- Remise: {{ $estimateBoard->estimateDiscount }}%
# |
Désignation |
Description |
Prix Unitaire |
Quantité |
Total |
@php $i = 1; @endphp
@foreach($estimateItems as $item)
{{ $i }} |
{{ $item->estimateItemName }} |
{{ $item->estimateItemDescription }} |
|
{{ $item->estimateItemQuantity }} |
|
@php $i++; @endphp
@endforeach
Sous Total: |
|
@php
$taxe = $estimateBoard->estimateTotal * $estimateBoard->taxePercent / 100;
$discount = $estimateBoard->estimateTotal * $estimateBoard->estimateDiscount / 100;
@endphp
Taxe: ({{ $estimateBoard->taxePercent }}%) |
|
Remise: ({{ $estimateBoard->estimateDiscount }}%) |
|
Total: |
|
Autre information
{{ $estimateBoard->estimateAnotherInfos!=null?$estimateBoard->estimateAnotherInfos:'Aucune' }}
@endsection
@section('scriptsSheets')
@endsection