@section('content')

Orders

@if($orders) @foreach($orders as $order) @endforeach @else @endif
ID Units Amount Offering Status Date Actions
{{ $order->order_id }} {{ $order->units }} ${{ number_format($order->amount, 2) }} {{ $order->offering }} {{ $order->order_status }} {{ date('M d, Y, g:ia',strtotime($order->created_at)) }} {{ Form::open(array('route' => array('admin.orders.destroy', $order->order_id), 'method' => 'DELETE')) }} {{ Form::close() }}
No orders yet.
{{ $orders->appends(array('query' => Input::get('query')))->links() }} @endsection