@extends('theme.master') @section('title', "$zoom->meeting_title") @section('content') @include('admin.message') @section('meta_tags') @php $url = URL::current(); @endphp @endsection
@php // Ensure $meeting->paid_meeting_price is a number $paidMeetingPrice = (float) $zoom->paid_meeting_price; $isPaid = App\PaidMettings::where('user_id', auth()->id()) ->where('meeting_id', $zoom->id) ->where('amount', '>=', $paidMeetingPrice) ->exists(); @endphp
@if(isset($zoom) && $zoom->paid_meeting_price && !$isPaid)

{{ currency($zoom->paid_meeting_price, $from = $currency->code, $to = Session::has('changed_currency') ? Session::get('changed_currency') : $currency->code, $format = true) }}

@else {{ __('Join Meeting') }} @endif

{{ __('Agenda') }}

  • {!! $zoom->agenda !!}
@endsection @section('custom-script') @endsection