@extends('admin.layouts.app')
@section('styles')
@endsection
@section('header')
@include('admin.layouts.header')
@endsection
@section('sidemenu')
@include('admin.layouts.sidemenu')
@endsection
@section('content')
Month |
Downloads |
@php $i = 1; @endphp
@foreach ($monthly as $row)
{{ $row->month }} |
{{ $row->count }} |
@php $i++; @endphp
@endforeach
Month |
Device OS |
Location |
Device Model |
Count |
@php $i = 1; @endphp
@foreach ($android_details_android as $row)
{{ $row->month }} |
{{ $row->device_OS }} |
{{ $row->location }} |
{{ $row->device_model }} |
{{ $row->count }} |
@php $i++; @endphp
@endforeach
Month |
Device OS |
Location |
Device Model |
Count |
@php $i = 1; @endphp
@foreach ($android_details_ios as $row)
{{ $row->month }} |
{{ $row->device_OS }} |
{{ $row->location }} |
{{ $row->device_model }} |
{{ $row->count }} |
@php $i++; @endphp
@endforeach
Time |
Device Type |
Device OS |
Device Model |
Location |
IMEI No. |
@php $i = 1; @endphp
@foreach ($android_details_all as $row)
{{ $row->created_at }} |
{{ $row->device_type }} |
{{ $row->device_OS }} |
{{ $row->device_model }} |
{{ $row->location }} |
{{ $row->imei_no }} |
@php $i++; @endphp
@endforeach
@endsection
@section('footer')
@include('admin.layouts.footer')
@endsection
@section('scripts')
@endsection