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

Riwayat Bel Sekolah

Log aktivasi bel sekolah otomatis dan manual

Filter

Reset

TOTAL AKTIVITAS

{{ $histories->total() }}

TERJADWAL

{{ $histories->where('trigger_type', 'schedule')->count() }}

MANUAL

{{ $histories->where('trigger_type', 'manual')->count() }}

@forelse($histories as $history) @empty @endforelse
Waktu Bel Hari File Trigger Volume Repeat Aksi
{{ $history->ring_time->format('d M Y') }}
{{ $history->ring_time->format('H:i:s') }}
{{ $history->hari }} {{ $history->file_number }} {{ ucfirst($history->trigger_type) }}
{{ $history->volume }}%
{{ $history->repeat }}x
@csrf @method('DELETE')

Tidak ada data riwayat

Belum ada aktivasi bel yang tercatat. Aktivasi bel akan muncul di sini setelah dijalankan.

@if($histories->hasPages())
{{ $histories->links() }}
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush