@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('Invoice'), 'class' => 'col-lg-7' ])
{{__('Booking ID :')}} {{$booking->booking_id}}
{{__('Booking Date :')}} {{$booking->date}}
{{__('Booking Time :')}}{{$booking->start_time}}
{{__('Payment Type :')}} {{__($booking->payment_type)}}
{{__('Booking Status :')}} {{__($booking->booking_status)}}
| {{__('#')}} | {{__('Service Name')}} | {{__('Price')}} |
|---|---|---|
| {{$loop->iteration}} | {{$service->name}} | {{$symbol}}{{$service->price}} |
{{__('Total :')}} {{$symbol}}{{$subtotal}}
@if ($booking->booking_at == "Home"){{__('Extra Charges :')}} {{$symbol}}{{$booking->extra_charges}}
@endif @if ($booking->discount != 0){{__('Coupon Discount :')}} -{{$symbol}}{{$booking->discount}}
@endif{{__('Total Payment :')}} {{$symbol}}{{$booking->payment}}