@php $data = []; $data['title'] = "Upload student data"; @endphp @include('HOD.components.header_link', $data);
@include('HOD.components.menu')
@include('HOD.components.navbar', $data)
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@error('csv_file') {{$message}} @enderror
@if(count($studentData) > 0) @foreach ($studentData as $index => $items) @endforeach @else @endif
S.No. Name Branch Year Email Mobile Course Date Action
{{$index + 1}} {{$items->name}} {{$items->branch}} {{$items->year}} {{$items->email}} {{$items->mobile}} {{$items->course}} {{$items->created_at}}
Edit Student
@csrf
@include('HOD.components.footer') @include('HOD.components.footer_link')