@extends('layouts.app')
@section('content')
@if (Auth::user()->usertype === 'admin')
Tambah Data
@endif
No |
Nama |
Email |
Phone |
@if (Auth::user()->usertype === 'admin')
Action |
@endif
@foreach ($data as $index => $user )
{{ $index + 1 }} |
{{ $user->name }} |
{{ $user->email }} |
{{ $user->phone }} |
@if (Auth::user()->usertype === 'admin')
|
@endif
@endforeach
@endsection
@section('script')
@endsection