@extends('adminlte::page') @section('title', 'Data Siswa') @section('content_header')

Data Siswa

@stop @section('content')

Daftar Siswa


@if(session('success')) @endif @foreach($datas as $key => $data) @endforeach
No NISN Nama Lengkap L/P TTL Jurusan Tahun Ajaran Kelas Asal Sekolah Foto Aksi
{{ $key + 1 }} {{ $data->nisn }} {{ $data->nama_lengkap }} {{ $data->jenis_kelamin == 1 ? 'L' : 'P' }} {{ $data->tempat_lahir }}, {{ $data->tanggal_lahir }} {{ $data->jurusan }} {{ $data->tahun_ajaran }} {{ $data->kelas }} {{ $data->asal_sekolah }} @if($data->image_path && $data->image_path != 'nophoto.jpg') @else No Image @endif
@csrf @method('DELETE')
@stop @section('css') @stop @section('js') @stop