@extends('layouts.engine') @section('content')

DataTable Example

Using DataTables, add advanced interaction controls to your HTML tables. It is a highly flexible tool and all advanced features allow you to display table instantly and nice way.

Check out the documentation for a full overview.

Data Table

Using the most basic table markup, here’s how .table based tables look by default.

@foreach($trans as $tran) @endforeach
# Trans Type Wallet Address Amount Date
{{ $tran->wallet }} {{ $tran->address }} {{ $tran->wallet }} {{ number_format($tran->amount) }} Active
@endsection @section('scripts') @endsection