Files
mmc_info/resources/views/admin/users/list.blade.php
Александр Бабкин 7a46864d33 continue users
2022-06-24 13:50:02 +03:00

44 lines
1.9 KiB
PHP

<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('User list') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
<a href="{{ route('users.create')}}">
<x-button class="m-2">{{__('Create user')}}</x-button>
</a>
<div align="center">
<table class="table table-sm border-b border-gray-200">
<tr class="border border-gray-200">
<th class="p-2 border border-gray-200">
{{ __('User name')}}
</th>
<th class="p-2 border border-gray-200">
{{ __('Email')}}
</th>
<th class="p-2 border border-gray-200">
{{ __('Actions')}}
</th>
</tr>
@foreach ( $users as $user)
<tr class="border border-gray-200">
<td class="p-2 border border-gray-200"><a href="{{ route('users.show',$user->id)}}" class="underline">{{ $user->username }}</a></td>
<td class="p-2 border border-gray-200">{{ $user->email }}</td>
<td class="p-2 border border-gray-200">&nbsp;</td>
</tr>
@endforeach
</table>
</div>
</div>
</div>
</div>
</div>
</x-app-layout>