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

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

@else @endif

{{ __('Agenda') }}

  • {!! $jitsimeet->agenda !!}
@endsection