@if($scooters->count() > 0)
| # |
{{ __('admin.scooter_code') }} |
{{ __('admin.model') }} |
{{ __('admin.status') }} |
{{ __('admin.battery') }} |
{{ __('admin.control') }} |
@foreach($scooters as $scooter)
| {{ $scooter->id }} |
{{ $scooter->code }} |
{{ $scooter->model ?? '—' }} |
{{ __('apis.scooter_status.' . $scooter->status) }} |
{{ $scooter->battery_percent }}% |
@if($row->is_approved == 1)
@endif
|
@endforeach
@if($scooters->hasPages())
{{ $scooters->links('pagination::bootstrap-4') }}
@endif
@else
{{ __('admin.there_are_no_matches_matching') }}
@endif