@extends('layouts.dashboard') @section('title', 'Riwayat Bel Sekolah') @section('content')

Riwayat Bunyi Bel

Catatan lengkap semua aktivitas bel sekolah

Total Data: {{ $histories->total() }}
@if(request()->hasAny(['search', 'trigger_type', 'date'])) Reset @endif
@forelse($histories as $history) @empty @endforelse
Waktu Hari Jam File Trigger Volume Pengulangan
{{ $history->ring_time->format('d M Y') }}
{{ $history->ring_time->format('H:i:s') }}
{{ $history->hari }} {{ $history->waktu }} {{ $history->file_number }} @if($history->trigger_type == 'schedule') Jadwal @else Manual @endif
{{ $history->volume ?? '15' }}
{{ $history->repeat ?? '1' }}x

Tidak ada data riwayat

Belum ada aktivitas bel yang tercatat

@if($histories->hasPages())
Menampilkan {{ $histories->firstItem() }} sampai {{ $histories->lastItem() }} dari {{ $histories->total() }} entri
{{ $histories->links('vendor.pagination.tailwind') }}
@endif
@endsection