@extends('admin.layouts.master') @section('title', 'Attendance - User Attendance') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('Attendance : ') }} ({{ $user->fname }} {{ $user->lname }} )-> {{ __('Enrolled on') }} {{ date('d-m-Y', strtotime($enrolled['created_at'])) }}
​ @foreach($attandance as $attand) @endforeach
# {{ __('User') }} {{ __('Attendance Date') }}
1

{{ __('User') }}: {{ $user->fname }} {{ $user->lname }}

{{ __('Attendance') }}: {{ date('d-m-Y', strtotime($attand->date)) }}



@endsection @section('script') @endsection