@extends('layouts.AdminMaster') @yield('sessions') @section('title', 'Orders') @section('content') @foreach($orders as $order) @endforeach
Invoice No Date Amount Payment Type Status
{{$order->invoice_id}} {{$order->date}} {{$order->total}} {{$order->payment_type}} {!! Form::open(['url' => ['admin/confirm/orders'], 'method' => 'POST']) !!} {!! Form::close() !!}
@endsection @section('scripts') @endsection