@extends('layouts.master') @section('title','Kurs İşlemleri') @section('content')

Kurumunuzda Ön Kayıtlı Kurs Öğrenci Listesi

@php($sira=0) @foreach($kurs as $ogrenci) @php($sira++) @endforeach
Sıra No Adı Soyadı Sınıf Düzeyi E-Posta Veli Tel Kurs Kayıt Tarihi İşlemler
{{$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')}}
@endsection @section('css') @endsection @section('js') @include('layouts.table') @endsection