nanorocksArchive / laravel-eshop

Simple e-shop with dummy data build with Laravel :)
https://eshop.nankov.mk/
1 stars 0 forks source link

Make an admin login page and add Order DataTable #1

Closed nanorocks closed 3 years ago

nanorocks commented 3 years ago
$order = Order::join('addresses', 'orders.address_id', '=', 'addresses.id')
->join('customers', 'orders.customer_id', '=', 'customers.id')
->paginte();

// On click on show more this one

$products = OrderProduct::where(OrderProduct::ORDER_ID, $order->id)
->join('products', 'products.id', '=', 'orders_products.product_id')
->get();
nanorocks commented 3 years ago

https://livewire-datatables.com/

nanorocks commented 3 years ago

https://www.grocerycrud.com/

nanorocks commented 3 years ago

done