@extends('layouts.master')
@section('title', 'Black list')
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
Black list
{{-- Hello! This is Sandbox
--}}
| No. |
Student ID |
Name |
Period |
|
@foreach ($black_list as $key => $black)
| {{ ++$key }} |
{{ $black->blacklist_student_code }} |
{{ $black->student_firstname }} {{ $black->student_lastname }} |
{{ \Carbon\Carbon::parse($black->blacklist_period)->format('H:i') }} |
{{--
--}}
|
@endforeach
@include('layouts.footer')
@endsection