@extends('layouts.simple.master') @section('title', trans(app()->getLocale() . '.calendar')) @section('css') @endsection @section('main_content')

{{ trans(app()->getLocale() . '.calendar') }}

{{ trans(app()->getLocale() . '.calendar_filter') }}
{{ trans(app()->getLocale() . '.pending_meeting_requests') }}
@forelse($pendingMeetings as $meeting)
{{ $meeting->user->name }}
{{ ucfirst(str_replace('_', ' ', $meeting->meeting_type)) }} @if($meeting->company_id && $meeting->user->type === 'entrepreneur')
{{ $meeting->company->name }} @if($meeting->company->description)
{{ Str::limit($meeting->company->description, 40) }} @endif @endif
@empty

{{ trans(app()->getLocale() . '.no_pending_meetings') }}

@endforelse

@endsection @section('scripts') @endsection