@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Attendance @include('datepicker') @section('main-content')
@if (Session::has('success')) @endif

Attendance

@if (isset($attendance))
{{ Auth::user()->first_name . ' ' . Auth::user()->last_name . ' your attendance has been marked successfully for today.' }}
@if ($attendance->image)
Attendance Image
attendance_img
@else
Not uploaded any picture while marking an attendance.
@endif
@endif
Add Details
@csrf

{{-- --}}
@endsection