@extends('entity.app') @section('title', __('student.healthes')) @section('content')
@lang('student.healthes')
@if ($healthes->isEmpty())

@lang('student.empty')

@else @foreach ($healthes as $health) @endforeach
@lang('student.id') @lang('student.name') @lang('student.student_count') @lang('student.created_at') @lang('student.actions')
{{ $health->id }} {{ $health->name }} {{ $health->students_count }} {{ $health->created_at->format('Y-m-d') }}
{!! $healthes->links() !!}
@endif
@endsection