@extends('layouts.app') @section('title', $mobile->imei_1) @section('content')

{{ $mobile->title() }}

@if($mobile->stock_status === 'available') {{ __('app.create_invoice') }}@endif{{ __('app.edit') }}{{ __('app.back') }}
IMEI 1{{ $mobile->imei_1 }}
IMEI 2{{ $mobile->imei_2 }}
{{ __('app.brand') }}{{ $mobile->brand->name ?? '-' }}
{{ __('app.model') }}{{ $mobile->model->name ?? '-' }}
{{ __('app.condition') }}{{ __('app.'.$mobile->condition_status) }}
{{ __('app.source') }}{{ __('app.'.$mobile->source_type) }}
{{ __('app.status') }}{{ __('app.'.$mobile->stock_status) }}
{{ __('app.cost') }}{{ number_format($mobile->total_cost,2) }}
{{ __('app.sale_price') }}{{ number_format($mobile->sale_price,2) }}
{{ __('app.supplier') }}{{ $mobile->supplier->name ?? '-' }}
{{ __('app.customer_seller') }}{{ $mobile->seller->name ?? '-' }}
{{ __('app.notes') }}{{ $mobile->notes }}
@endsection