@extends('layouts.admin.master') @section('title') {{ __('Student') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')
| {{ __('First Name') }} | {{ __('Last Name') }} | {{ __('Image') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ $student->first_name }} | {{ $student->last_name }} |
|
{{ $student->email }} | {{ $student->phone }} | {{ $student->status == 'active' ? 'Activated' : 'Not Activated' }} |
@can('student-edit')
{{ __('Edit') }}
{{ __('Show') }}
{{ __('Change Status') }}
@endcan
@can('student-delete')
{{ __('Delete') }}
@endcan
|