@include('common.header_links')
@include('common.header') @include('common.sidebar')

{{ $title }}

This is the list of all available {{ $title }}
@if(session('error'))
@endif @if(session('success'))
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $title }} List

@foreach ($params as $index => $list) @endforeach
# Attendance Type Name
{{ ($params->currentPage() - 1) * $params->perPage() + $index + 1 }}. {{ $list->attendance_type_name }}
@include('common.footer')
@include('common.script')