@extends('layouts.SellerMasterLayout') @yield('sessions') @section('content')
View & approve Orders
@foreach($item_store as $item) @endforeach
# Order No Item Name Qty Date / Time Status
{{$x++}} {{$item->order_id}} {{DB::table('items')->where('item_id',$item->item_id)->first()->name}} {{$item->qty}} {{$item->created_at}} {!! Form::open(array('url' => 'orderaccept','method'=>'GET')) !!} {!! Form::close() !!}
@section('scripts') @endsection @endsection