@extends('layouts.admin') @section('title', $ticketCategory->name . ' - Category Details') @section('content')
| Name | Event | Price | Inventory | Status | Actions |
|---|---|---|---|---|---|
|
{{ $ticketType->name }}
@if($ticketType->description)
{{ Str::limit($ticketType->description, 50) }}
@endif
|
{{ $ticketType->event->name }} | ${{ number_format($ticketType->base_price, 2) }} |
{{ $ticketType->available_quantity }}/{{ $ticketType->total_quantity }}
@php
$percentage = $ticketType->total_quantity > 0 ? ($ticketType->available_quantity / $ticketType->total_quantity) * 100 : 0;
$colorClass = $percentage > 50 ? 'success' : ($percentage > 20 ? 'warning' : 'danger');
@endphp
|
{{ $ticketType->is_active ? 'Active' : 'Inactive' }} @if($ticketType->available_quantity == 0) Sold Out @endif |
{{ $ticketCategory->slug }}
{{ $ticketCategory->color }}