@php
$getUserRoleData = userRoleData();
$CountryModel = explode(",",$getUserRoleData->CountryModel);
@endphp
@if(session()->has('message'))
{{ trans('labels.Successlabel') }}
{{ session()->get('message') }}
@endif
@if(session()->has('error'))
{{ trans('labels.WarningLabel') }}
{{ session()->get('error') }}
@endif
@if($result->count() > 0)
@foreach ($result as $key)
{{ $key->id }} |
{{ $key->mobile }} |
@if($key->product == '16479432566')
Guru
@elseif($key->product == '16479430707')
Tashan
@elseif($key->product == '16479432000')
Brampton
@elseif($key->product == '14318045074')
Indian TV
@elseif($key->product == '14037752000')
Vois
@else
Boss
@endif
|
{{ date('d-m-Y H:i:s', strtotime($key->created_at)) }} |
{{ date('d-m-Y H:i:s', strtotime($key->updated_at)) }} |
|
@endforeach
{!! $result->appends(request()->input())->links() !!}
|
@else
No record found |
@endif