@extends('adminlte::page')
@section('title', 'ユーザー一覧')
@section('content_header')
ユーザー一覧
@stop
@section('content')
| 名前 |
メールアドレス |
LINE通知 |
通知設定 |
管理者 |
操作 |
@foreach($users as $user)
| {{ $user->name }} |
{{ $user->email }} |
|
通知設定
|
|
編集
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop