@extends('adminlte::page') @section('title','Account Report') @section('plugins.Datatables', true) @section('content_header')

Account Report

Export CSV
@stop @section('content')
Reset
Account Report
@foreach($accounts as $account) @endforeach
# Account No Name Mobile Opening Date
{{ $loop->iteration }} {{ $account->account_no }} {{ $account->customer_name }} {{ $account->mobile }} {{ date('d-m-Y',strtotime($account->opening_date)) }}
@stop @section('js') @stop