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

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

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

{{ __('app.retail_invoice') }} {{ __('app.sale_invoice_list') }} {{ __('app.available_stock') }}
@csrf
1{{ __('app.customer') }}
2{{ __('app.search') }}
3{{ __('app.choose_mobiles') }}
4{{ __('app.payment') }}
5{{ __('app.finish') }}
{{ __('app.customer') }} / {{ __('app.invoice') }}
{{ __('app.wizard_required_step_hint') }}
{{ __('app.mobile_search_engine') }}
{{ __('app.invoice_item_search_hint') }}
0 {{ __('app.selected') }} {{ $mobiles->count() }} {{ __('app.records') }}
{{ __('app.choose_mobiles') }}
@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); $checked = in_array($m->id, old('mobile_ids', $preselectedMobileIds ?? [])); @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.subtotal') }}0.00
{{ __('app.selected') }}0
{{ __('app.due') }}0.00
{{ __('app.payment_information') }}
{{ __('app.subtotal') }}0.00
{{ __('app.discount') }}0.00
{{ __('app.total') }}0.00
{{ __('app.due') }}0.00
{{ __('app.finish') }}
{{ __('app.review_before_save') }}
@endsection