@extends('admin/layouts/default') {{-- Page title --}} @section('title') sms log @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

SMS Log

SMS Log

@foreach($api_logs as $api_log) @endforeach
Customer Name Transaction ID Message
{!! $api_log->customer->full_name !!} {!! $api_log->transaction_id !!} {!! $api_log->message !!}
@stop {{-- page level scripts --}} @section('footer_scripts') @stop