@extends('layouts.master') @section('title',"Kullanıcılar") @section('content') @section('head') @endsection

Kullanıcılar |

@if(session()->has('mesaj_tur'))
{{ session('mesaj') }}
@endif
@foreach($kullanicilar as $kullanici) @endforeach
ID Durum Ad Soyad Kademe/Sınıf Logo Led Departman Email Adres
{{$kullanici->id}} {{ $kullanici->aktif_mi==1 ? 'Aktif' : 'Pasif' }} {{$kullanici->adsoyad}} {{$kullanici->kademe}} {{$kullanici->logo }} {{$kullanici->led }} {{$kullanici->departman}} {{$kullanici->email}}
ID Durum Kullanıcı Adı Kademe/Sınıf Logo Led Departman Email Adres
@endsection @section('footer') @endsection