@extends('theme.master') @section('title', "$bbl->meetingname") @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) $bbl->paid_meeting_price; $isPaid = App\PaidMettings::where('user_id', auth()->id()) ->where('meeting_id', $bbl->id) ->where('amount', '>=', $paidMeetingPrice) ->exists(); @endphp
@if(Auth::check()) @if($bbl->paid_meeting_price && !$isPaid)

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

@else @endif @else @endif

{{ __('Detail') }}

  • {!! $bbl->detail !!}
@endsection