/
home
/
sjslayjy
/
public_html
/
theweavenest
/
resources
/
views
/
Admin
/
Upload File
HOME
@extends('admin/layout') @section('page_title','Order') @section('order_select','active') @section('container') <style> .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .btn-icon { padding: 5px 8px; /* Smaller padding */ font-size: 14px; /* Smaller font size */ } .btn-icon i { margin-right: 0; /* No margin between icon and button */ } .small-btn { font-size: 10px; /* Smaller font size */ padding: 5px 8px; /* Smaller padding */ line-height: 1.2; /* Adjust line height for spacing */ white-space: nowrap; /* Prevent text wrapping */ height: auto; /* Auto height */ width: auto; /* Auto width */ } </style> <h1 class="mb10">Order</h1> <div class="row m-t-30"> <div class="col-md-12"> <!-- DATA TABLE--> <div class="table-responsive m-b-40"> <table id="order_table" class="table table-borderless table-striped table-data3"> <thead> <tr> <th>Order ID</th> <th>Customer Details</th> <th>Amt</th> <th>Order Status</th> <th>Payment Status</th> <th>Payment Type</th> <th>Order Date</th> <th>Actions</th> <!-- Added Actions Column --> </tr> </thead> <tbody> @foreach($orders as $list) <tr> <td>{{$list->id}}</td> <td> {{$list->name}}<br/> {{$list->email}}<br/> {{$list->mobile}}<br/> {{$list->address}},{{$list->city}},{{$list->state}},{{$list->pincode}} </td> <td>{{$list->total_amt}}</td> <td>{{$list->orders_status}}</td> <td>{{$list->payment_status}}</td> <td>{{$list->payment_type}}</td> <td>{{$list->added_on}}</td> <td> <!-- Actions Column --> <a href="{{ url('/admin/order_detail/' . $list->id) }}" class="btn btn-success btn-icon small-btn" title="View Details"> <i class="fa fa-eye"></i> </a> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> <script> $(document).ready(function() { $('#order_table').DataTable(); }); </script> @endsection