{{ __('admin.scooters') }}

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

{{ __('admin.there_are_no_matches_matching') }}

@endif