@extends('layouts.app') @section('title', __('app.retail_invoice')) @section('content')

{{ __('app.retail_invoice') }}

{{ __('app.retail_invoice_hint') }}

{{ __('app.sale_wizard') }} {{ __('app.sale_invoice_list') }}
@csrf
{{ __('app.retail_customer_info') }}
{{ __('app.choose_mobiles') }}
0 {{ __('app.selected') }} {{ $mobiles->count() }} {{ __('app.records') }}
@forelse($mobiles as $m) @php $brandName = strtolower($m->brand->name ?? ''); $modelName = strtolower($m->model->name ?? ''); $searchText = strtolower($m->imei_1.' '.$m->imei_2.' '.$m->serial_number.' '.$m->title().' '.$m->condition_status.' '.$m->source_type.' '.$m->storage.' '.$m->ram.' '.$m->color); @endphp @empty @endforelse
IMEI{{ __('app.mobile') }}{{ __('app.condition') }}{{ __('app.source') }}{{ __('app.cost') }}{{ __('app.sale_price') }}
{{ $m->imei_1 }}{{ $m->imei_2 ?: $m->serial_number }} {{ $m->title() }}{{ $m->storage }} {{ $m->ram }} {{ $m->color }} {{ __('app.'.$m->condition_status) }} {{ __('app.'.$m->source_type) }} {{ number_format($m->total_cost,2) }}
{{ __('app.no_records') }}
{{ __('app.selected') }}0
{{ __('app.subtotal') }}0.00
{{ __('app.total') }}0.00
{{ __('app.due') }}0.00
{{ __('app.close') }}
@endsection