@extends('master') @section('content')
Earnings
@foreach($earning as $k=>$val) @endforeach
S/N Amount Username Created Updated
{{++$k}}. {{substr($val->amount,0,9)}}BTC {{$val->user['username']}} {{date("Y/m/d", strtotime($val->created_at))}} {{date("Y/m/d h:i:A", strtotime($val->updated_at))}}
@stop