@extends('layouts.master')
@section('title','Kurs İşlemleri')
@section('content')
| Sıra No |
Adı Soyadı |
Sınıf Düzeyi |
E-Posta |
Veli Tel |
Kurs |
Kayıt Tarihi |
İşlemler |
@php($sira=0)
@foreach($kurs as $ogrenci)
@php($sira++)
| {{$sira}} |
{{$ogrenci->name}} |
{{$ogrenci->sinif}} |
{{$ogrenci->email}} |
{{$ogrenci->velitel}} |
@if($ogrenci->kurs=="Robotik") Temel Robotik Eğitimi @else Nesne Dayalı Programlama / PYTHON Eğitimi @endif |
{{Carbon\Carbon::parse($ogrenci->created_at)->format('d.m.Y')}} |
|
@endforeach
@endsection
@section('css')
@endsection
@section('js')
@include('layouts.table')
@endsection