@extends('organizer.layout') @section('content')
| {{ __('Ticket') }} | {{ __('Quantity') }} | {{ __('Price') }} |
|---|---|---|
|
@php
$ticket_content = App\Models\Event\TicketContent::where([
['ticket_id', $variation['ticket_id']],
['language_id', $defaultLang->id],
])->first();
$ticket = App\Models\Event\Ticket::where(
'id',
$variation['ticket_id'],
)
->select('pricing_type')
->first();
@endphp
@if ($ticket_content && $ticket->pricing_type == 'variation')
{{ $ticket_content->title }} -
@endif
{{ $variation['name'] }}
@if (array_key_exists('slot_name', $variation) && array_key_exists('seat_name', $variation))
{{ __('Slot Name') }}:{{ $variation['slot_name'] }} {{ __('Seat Name') }}:{{ $variation['seat_name'] }} @endif |
{{ $variation['qty'] }} |
@php
$evd = $variation['early_bird_dicount'] / $variation['qty'];
@endphp
{{ symbolPrice($variation['price'] - $evd) }}
@if ($variation['early_bird_dicount'] != null)
|