@extends('layouts.app') @section('content')

App Authentication manage apps

Search Authenticate Devices

@if ($message = Session::get('success'))

{{ $message }}

@elseif ($message = Session::get('failure'))

{{ $message }}

@endif

App data

@if(!auth()->user()->hasRole('Dealer')) Import Excel @endif Add Auth
@foreach($results as $appauth) @endforeach
ID User ID MAC ID VID Serial Number IMEI Number Model Maker Created Action
{{$appauth->id}} {{$appauth->user_id}} {{$appauth->mac_id}} {{$appauth->vendor_id}} {{$appauth->serial_no}} {{$appauth->imei_1}} {{$appauth->model}} {{$appauth->maker}} {{$appauth->created_at}} Edit @if(isset($appauth->vendor_id) && !empty($appauth->vendor_id)) Reset Device @endif @if(!auth()->user()->hasRole('Dealer')) @if($appauth->status == 'inactive') Inactive @else Active @endif @endif Delete

Showing {{ $pageInfo['currentPage'] }} to {{ $pageInfo['lastPage'] }} of {{ $pageInfo['total'] }} entries
{{ $results->links() }}
@include('elements.auths') @endsection