@extends('layouts.admin') @section('title', 'Dashboard - Admin') @section('content')
| ID | Nome | Categoria | Stock Atual | Threshold | Estado |
|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->name }} | {{ $product->category->name }} | @if($product->stock <= 0) {{ $product->stock }} @else {{ $product->stock }} @endif | {{ $product->low_stock_threshold }} | @if($product->stock <= 0) Esgotado @else Stock Baixo @endif |
| # | Utilizador | Total | Status | Data |
|---|---|---|---|---|
| {{ $order->id }} | {{ $order->user->name }} | {{ number_format($order->total, 2) }}€ | {{ $order->status }} | {{ $order->created_at->format('d/m/Y') }} |