@extends('adminlte::page')
@section('title', 'AdminLTE')
@section('content_header')
觀看{{ $main_data[0]->nickname }}紀錄:
@stop
@section('content')
使用紀錄
開始時間 |
使用時間(sec) |
使用字數 |
@foreach($tran_his as $key => $row)
@if(!empty($row->end_time))
{{ $row->start_time }} |
{{ $Timesub }} |
{{ $row->char_count }} |
@endif
@endforeach
開始時間 |
使用時間(sec) |
@foreach($speech_his as $key => $row)
@if(!empty($row->end_time))
{{ $row->start_time }} |
{{ $Timesub }} |
@endif
@endforeach
開始時間 |
人數 |
@foreach($room_his as $key => $row)
{{ $row->process_time }} |
{{ $row->people_count }} |
@endforeach
@stop