@extends('admin.layouts.content')
@section('content')
@include('components.card_header', ['title' => 'Inbox'])
# |
Mobile Number |
Message |
Created At |
Action |
@forelse($inbox as $sms)
{!! $loop->iteration !!} |
{!! $sms->mobile_number !!} |
{!! nl2br($sms->message) !!} |
{!! $sms->created_at->format('F d, Y h:i A') !!} |
|
@empty
No record(s) found.
|
@endforelse
@endsection