@extends('admin.layouts.app') @section('title', 'Ứng dụng di động') @section('page-title', 'Quản lý ứng dụng') @section('content')
Reset
@forelse($mobileApps as $app)
{{ $app->name }}

{{ $app->name }}

{{ $app->version }}

{{ ucfirst($app->category) }} {{ ucfirst(str_replace('_', ' ', $app->status)) }} @if($app->is_featured) ⭐ Nổi bật @endif
{{ number_format($app->download_count) }}
@for($i = 1; $i <= 5; $i++) @endfor
{{ $app->rating }}
View Edit
@csrf @method('DELETE')
@empty

No mobile apps found.

@endforelse
{{ $mobileApps->links() }}
@endsection