@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content')
@include('admin.partials.header', ['extra' => $extra]) @php $total_sms = 0; @endphp @if ($params['report_type'] == 'summary') @else @endif @if ($params['report_type'] != 'summary') @endif @foreach($query as $key => $row) @if ($params['report_type'] == 'summary') @php $total_sms += $row->total_sms; @endphp @else @php ++$total_sms; @endphp @endif @if ($params['report_type'] != 'summary') @endif @endforeach
S. No.Total SMSNumber{{__('lang.type')}} SMS BodyDate
{{++$key}}{{ $row->total_sms }}{{ ucfirst($row->number) }}{{ ucfirst($row->vouchers) }} {{ $row->content }}{{ $transaction->date_format($row->created_at)}}
TOTAL | {{$total_sms}}
@stop