@extends('layouts.main') @push('nav_title') {{-- User--}} Enzy @endpush @section('page_title') @endsection @section('profile') @include('layouts/profile') @endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('main_div') @if($product_info)

Product Details

{{$product_info['name']}}

Price
${{$product_info['price']}}

@if($product_info['quantity'] > 0) In Stock @else Out of Stock @endif
Description

{{$product_info['descryption']}}

{{$product_info['descryption']}}

Safety Standards
  • Meets Australian Safety Standard AS/NZS 4399:2017
  • UPF 50+ rating for maximum sun protection
  • Compliant with Ampcontrol safety requirements
  • High-visibility options available where required
Certifications

All uniforms are certified for workplace safety and comfort according to industry standards.

Design Features
  • Durable, breathable fabric designed for Australian conditions
  • Reinforced stitching at stress points for longer wear
  • Company logo embroidery included
  • Available in multiple colors with departmental color-coding options
  • Designed for comfort during extended wear
@else
Product not found.
@endif

Related Products

@foreach($products->take(4) as $product)
@if($product->quantity > 0) @else @endif
{{$product->name}}
{{$product->price}}
@endforeach
@include('layouts.cart')
@endsection