/
home
/
sjslayjy
/
public_html
/
theweavenest
/
resources
/
views
/
front
/
Upload File
HOME
@extends('front.layout_alt') @section('page_title', 'product_cat') @section('content') <section class="page-header"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="content"> <h1 class="page-name">Dashboard</h1> <ol class="breadcrumb"> <li><a href="{{ url('/') }}">Home</a></li> <li class="active">My Account</li> </ol> </div> </div> </div> </div> </section> <section class="user-dashboard page-wrapper"> <div class="container"> <div class="row"> <div class="col-md-12"> <ul class="list-inline dashboard-menu text-center"> <li><a href="{{ url('/') }}">Dashboard</a></li> <li><a class="active" href="{{ url('order') }}">Orders</a></li> </ul> <div class="dashboard-wrapper user-dashboard"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Order Id</th> <th>Order Status</th> <th>Payment Status</th> <th>Total Amt</th> <th>Payment ID</th> <th>Placed At</th> <th>Action</th> </tr> </thead> <tbody> @foreach($orders as $order) <tr> <td class="order_id_btn"><a href="{{ url('order_detail', $order->id) }}">{{ $order->id }}</a></td> <td>{{ $order->orders_status }}</td> <td>{{ $order->payment_status }}</td> <td>{{ $order->total_amt }}</td> <td>{{ $order->payment_id }}</td> <td>{{ $order->added_on }}</td> <td><a href="{{ url('order_detail', $order->id) }}" class="btn btn-default">View</a></td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> </section> @endsection