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

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

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

{{ __('app.back') }}
@csrf
{{ __('app.customer') }} / {{ __('app.invoice') }}
{{ __('app.choose_mobiles') }}
@forelse($mobiles as $m)@empty@endforelse
IMEI{{ __('app.mobile') }}{{ __('app.condition') }}{{ __('app.cost') }}{{ __('app.sale_price') }}
{{ $m->imei_1 }}{{ $m->imei_2 }}{{ $m->title() }}{{ __('app.'.$m->condition_status) }}{{ number_format($m->total_cost,2) }}
{{ __('app.no_records') }}
@endsection