@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'] }} | {{ $variation['qty'] }} |
@php
$evd = $variation['early_bird_dicount'] / $variation['qty'];
@endphp
{{ symbolPrice($variation['price'] - $evd) }}
@if ($variation['early_bird_dicount'] != null)
|