@extends('layouts.app') @section('content') @push('head') @endpush

Welcome! You are logged in

@if (\Session::has('status'))
  • {!! \Session::get('message') !!}
@endif
Meetings
@if(count($meetings) > 0) @foreach($meetings as $meeting) @php $timenow = date($meeting['time']); $timestamp = strtotime($timenow); $style = ''; if(time() > $timestamp ) { $style = 'style="color:red"'; } @endphp @endforeach @else @endif
Type Location
{{ $meeting->meetingType[0]->meeting_name }} {{ str_limit($meeting['location'], $limit = 16, $end = '...') }}
No Meeting found.
{{ $meetings->links() }}
@endsection