@if(!empty($brandinfo->brand_name)) {{ ucfirst($brandinfo->brand_name) }} @endif

Mobile Details

...

Brand : @if(!empty($brandinfo->brand_name)) {{ ucfirst($brandinfo->brand_name) }} @endif

@if(!empty($proinfo->pro_imei) && empty($proinfo->pro_serial))

IMEI Number: @if(!empty($proinfo->pro_imei)) {{ $proinfo->pro_imei }} @endif

@elseif(!empty($proinfo->pro_serial) && empty($proinfo->pro_imei))

Serial Number : @if(!empty($proinfo->pro_serial)) {{ $proinfo->pro_serial }} @endif

@endif

Temp Bar Code : @if(!empty($proinfo->barcode)) {{ $proinfo->barcode }} @endif

Sale Bar Code : @if(!empty($proprice->sales_barcode)){{ $proprice->sales_barcode }}@endif

@csrf
Product Details
@include('backend.global.mobile-details')
                     
Service Details
@php $pro_spare = isset($ser_cond->pro_spare) ? explode(',', $ser_cond->pro_spare) : ''; $pro_qnt = isset($ser_cond->pro_qnt) ? explode(',', $ser_cond->pro_qnt) : ''; $pro_price = isset($ser_cond->pro_price) ? explode(',', $ser_cond->pro_price) : ''; $pric=0; @endphp @if(!empty($ser_cond)) @for($i=0;$i @php $pric += $pro_price[$i]; @endphp @endfor @endif
Parts Quantity Price
@if(!empty($pro_spare[$i])){{ $pro_spare[$i] }}@endif @if(!empty($pro_qnt[$i])){{ $pro_qnt[$i] }}@endif @if(!empty($pro_price[$i])){{ $pro_price[$i] }}@endif
Total Price :
₹ {{$pric}}
@endsection @section('scripts') @endsection