|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/lecturebazaar.com/resources/views/admin/agora_history/ |
Upload File : |
@extends('admin.layouts.app')
@section('content')
<section class="section">
<div class="section-header">
<h1>{{ $pageTitle }}</h1>
<div class="section-header-breadcrumb">
<div class="breadcrumb-item active"><a href="{{ getAdminPanelUrl() }}">{{trans('admin/main.dashboard')}}</a>
</div>
<div class="breadcrumb-item">{{ $pageTitle }}</div>
</div>
</div>
<div class="section-body">
<section class="card">
<div class="card-header">
@can('admin_agora_history_export')
<div class="text-right">
<a href="{{ getAdminPanelUrl() }}/agora_history/excel" class="btn btn-primary">{{ trans('admin/main.export_xls') }}</a>
</div>
@endcan
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-striped text-center font-14">
<tr>
<th class="text-left">{{ trans('admin/main.course') }}</th>
<th class="text-left">{{ trans('admin/main.session') }}</th>
<th class="text-center">{{ trans('update.session_duration') }}</th>
<th class="text-center">{{ trans('admin/main.start_date') }}</th>
<th class="text-center">{{ trans('admin/main.end_date') }}</th>
<th class="text-center">{{ trans('update.meeting_duration') }}</th>
</tr>
@foreach($agoraHistories as $agoraHistory)
@php
$meetingDuration = ($agoraHistory->end_at - $agoraHistory->start_at) / 60;
@endphp
<tr>
<td class="text-left">{{ !empty($agoraHistory->session) ? $agoraHistory->session->webinar->title : trans('update.deleted_session') }}</td>
<td class="text-left">{{ !empty($agoraHistory->session) ? $agoraHistory->session->title : trans('update.deleted_session') }}</td>
<td>{{ !empty($agoraHistory->session) ? convertMinutesToHourAndMinute($agoraHistory->session->duration) : '-' }}</td>
<td>{{ dateTimeFormat($agoraHistory->start_at, 'j M Y | H:i') }}</td>
<td>{{ dateTimeFormat($agoraHistory->end_at, 'j M Y | H:i') }}</td>
<td class="{{ !empty($agoraHistory->session) ? (($meetingDuration > $agoraHistory->session->duration) ? 'text-danger' : 'text-success') : '' }}">
{{ convertMinutesToHourAndMinute($meetingDuration) }}
</td>
</tr>
@endforeach
</table>
</div>
</div>
<div class="card-footer text-center">
{{ $agoraHistories->links() }}
</div>
</section>
</div>
</section>
@endsection