Device Models

Manage GPS device models

Add Device Model
@forelse($deviceModels as $model)

{{ $model->name }}

{{ $model->manufacturer }}

@if($model->status === 'active') Active @else Discontinued @endif
Model Number: {{ $model->model_number }}
Standard Price: PKR {{ number_format($model->standard_price, 2) }}
Total Stock: {{ $model->inventories_count }}
@if($model->description)

{{ $model->description }}

@endif
@empty

No device models found.

Add First Device Model
@endforelse
{{ $deviceModels->links() }}