@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Kullanıcı İşlemleri' => '/root/list/user', ], ]) !!} @endsection @section('content')
    @foreach ($users as $item)
  1. {{ $item->full_name }}

    {{ $item->city }}

    {{ $item->district }}

    {{ $item->tel }}

    {{ Str::limit($item->email, 20) }}

    {{ $item->roles[0]->title }}

    @php if ($item->is_active == true) { $status = 'Aktif'; $color = 'bg-green-500'; } else { $status = 'Pasif'; $color = 'bg-red-500'; } @endphp
    {{ $status }}
    Düzenle
    @csrf
    @csrf @method('DELETE')
  2. @endforeach @if (count($users) <= 0) Hiç Veri Bulunamadı @endif
{{ count($users) }}
@include('components.showImage') @if (session('error')) {{ session('error') }} @endif @if (session('success')) {{ session('success') }} @endif E-posta adresi kopyalandı @endsection @section('javascript') @endsection