@extends('entity.app') @section('title', __('student.student_statuses')) @section('content')
@lang('student.student_statuses') ({{ $student->fullName() }})
@forelse ($statuses as $index => $status) @empty @endforelse
@lang('student.id') @lang('student.from_status') @lang('student.to_status') @lang('student.decision_number') @lang('student.decision_date') @lang('student.created_at') @lang('student.actions')
{{ $status->id }} @lang('student.' . $status->from_status) @lang('student.' . $status->to_status) {{ $status->decision_number }} {{ $status->decision_date }} {{ $status->created_at?->format('Y-m-d') }} @if ($index == 0) @endif
@lang('general.no_result')
{!! $statuses->links() !!}
@endsection