@extends('layouts.app') @section('titlePage', 'Bulk Upload Student') @section('content') @include('common.delete_modal') @push('script') @endpush
@if(session('success'))

{{ session('success') }}

@endif @include('common.alert')
@csrf
{{-- --}}
@if ($new_students)
Student List
{{-- --}} @if(count($new_students) > 0) @foreach ($new_students as $key => $value) {{-- --}} {{-- --}} @endforeach @else @endif
S/No. Fullname College Register Number Phone Number Email ActionStatus Active/Deactive Action Password
{{ $key+1 }} {{ $value->name }} {{ $value->college }} {{ $value->registration_number }} {{ $value->phone_no }} {{ $value->mail_id }}
@csrf @method('DELETE')
{{ $value->status }}
@csrf @method('PUT') @if ($value->status == "Deactivated") @else @endif
@csrf @method('DELETE')
Change Password
No data Found
{{-- Pagination --}}
@endif
@endsection