@extends('layouts.app') @section('title', 'Manage Trades') @section('content')
Manage Trades
View, edit and manage all trades in the system
| Trade Name | Code | Duration | Description | Status | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $trade->trade_name }} | {{ $trade->trade_code }} | {{ $trade->duration }} | {{ $trade->description ?? '—' }} | @if ($trade->status == 1) Active @else Inactive @endif | {{ $trade->created_at->format('d M Y') }} |
No trades found. Get started by creating your first trade.
Create First Trade