@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 Dashboard SMS Log SMS Log Customer Name Transaction ID Message @foreach($api_logs as $api_log) {!! $api_log->customer->full_name !!} {!! $api_log->transaction_id !!} {!! $api_log->message !!} @endforeach @stop {{-- page level scripts --}} @section('footer_scripts') @stop