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