@extends('layouts.app') @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('style') @endsection @section('content')
@if (showUpgrade()) @endif
{{ __('My Meetings') }}
    @if ($firstMeeting) @foreach ($meetings as $key => $value)
    {{ $value->title }}

    {{ $value && $value->description ? (strlen($value->description) > 40 ? substr($value->description, 0, 40) . '...' : $value->description) : '-' }}

    @endforeach @endif
@if ($meetings->hasPages()) @endif
@endsection @section('script') @endsection