@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',['title'=> __('Devices')]) @endsection @section('content')
{{ __('Device Name') }} | {{ __('User') }} | {{ __('Phone') }} | {{ __('Transactions') }} | {{ __('Status') }} | {{ __('Created At') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|
{{ $device->name }} | {{ Str::limit($device->user->name ?? '',15) }} | {{ $device->phone }} | {{ number_format($device->smstransaction_count) }} | {{ $device->status == 1 ? 'Active' : 'Inactive' }} | {{ \Carbon\Carbon::parse($device->created_at)->format('d-F-Y') }} |