@include('partials._events_submenu')

My Convention Schedule

{{-- Mobile view top --}} @php $count = 0; @endphp @if(\Auth::user()->mobile_verified)

Add/remove meetings to your schedule and get an SMS text reminder 10 minutes prior to the start time. To create your personalized schedule, scan through the meeting lists and hit the "+" icon to add it. Then hit the bell icon to set a reminder. If you change your mind, just hit the "-" icon to remove it from your schedule.

@else

Your phone number is not verified
verify your mobile number
You can still add/remove meetings to your schedule but cannot receive SMS text reminders 10 minutes prior to the start time without a verified number.

To create your personalized schedule, scan through the meeting lists and hit the "+" icon to add it. Then hit the bell icon to set a reminder. If you change your mind, just hit the "-" icon to remove it from your schedule.

@endif {{--

Add/remove meetings to your schedule and get an SMS reminder 10 minutes prior to the start time. To create your personalized schedule, scan through the meeting lists and hit the "+" icon to add it. Then hit the bell icon to set a reminder. If you change your mind, just hit the "-" icon to remove it from your schedule.

--}} @foreach ($myschedule_events as $event) @php $count++; @endphp @endforeach @if($count == 0) @endif
{{ date('D g:i a',strtotime($event->start_at)) }} @if(\Auth::user()) {{$event->name}} @else {{strtoupper($event->name)}} @endif
{{$event->type->name}} meeting @if($settings->where('key', 'USE_MARATHON_LOCATION')->first()->value == 1) @if($event->location_id != '')
{{ $event->location->room }} @endif @endif @forelse ($event->event_user as $eu) @if($event->area_meeting)
{{ $event->area_meeting->name }}
{{ $event->area_meeting->location }}
{{ $event->area_meeting->region }} @endif @empty @endforelse @if($event->type->name != 'Security') @if(\Auth::user()->mobile_verified && \App\Models\MySchedule::where('user_id', \Auth::user()->id)->where('event_id', $event->id)->where('send_sms', 1)->first()) {{-- Remove Text Reminder --}} {{-- Remove this text reminder --}} @elseif(\Auth::user()->mobile_verified) {{-- Send Text Reminder --}} {{-- Send a text reminder 10 minutes before this meeting --}} @else verify your mobile number @endif @endif
You have nothing in your schedule yet. To add a meeting, click one of links above to find meetings that you would like to attend. Then click the Add to my Schedule button. You are free to remove meetings from your schedule if you should change your mind or if your plans change.
@if(isset($show_service_commitments) && $show_service_commitments == 1)

My Service Commitments

{{-- MOBILE VIEW BOTTOM --}}
{{--

A.A.'s Responsibility Statement

I am responsible. When anyone, anywhere reaches out for help, I want the hand of A.A. always to be there. And for that: I am responsible.

Most A.A. members participate by going to meetings at their local groups. But there are many opportunities for service in A.A., and most of us have found that volunteering to do service improves the quality of our recovery. We freely share our time and talent in an effort to stay sober and carry the message of Alcoholics Anonymous to those who are suffering from alcoholism. In other words, you get what you give.
(Source: Participating in A.A - aa.org)

--}}

Service opportunities are available for various positions all weekend long. Click the "FIND A COMMITMENT" button to find service opporunities that fit your schedule, then click the Volunteer button to sign up. Your commitments will appear here when confirmed.

@foreach(\App\Models\Event::where('published', 1)->whereIn('event_type_id', [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19])->orderBy('start_at')->groupBy(\DB::raw('DATE(start_at)'))->get() as $m) @php $count = 0; @endphp
    @foreach(\App\Models\Event::where('published', 1)->whereIn('event_type_id', [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19])->whereHas('users',function($q){ $q->where('users.id', \Auth::user()->id); })->whereDate('start_at', date('Y-m-d', strtotime($m->start_at)))->orderBy('start_at')->get() as $event)
@php $count++; @endphp @endforeach @if($count == 0) @endif @endforeach
{{date('l', strtotime($m->start_at))}}
{{ date('g:i a',strtotime($event->start_at)) }} {{ $event->name }} {{$event->event_user()->where('user_id', \Auth::user()->id)->first()->event_role->name}}
You have no commitments on {{ date('l', strtotime($m->start_at)) }}
@endif
@livewire('footer-links')