@extends('layouts.admin.master') @section('title') {{ __('Student') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Student') }}

@endslot @endcomponent
@foreach ($students as $student) @endforeach
{{ __('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' }}
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection