index.blade.php 1.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
@extends('adminlte::layouts.app')

@section('htmlheader_title')
	{{ trans('adminlte_lang::message.home') }}
@endsection

@section('contentheader_title')
	<center>List Petugas</center>
@endsection

@section('main-content')
PratiwiOkuli committed
12 13 14 15 16 17 18 19 20 21 22 23 24
	<table class="table table-striped">
    <thead>
        <tr>
            <th>Nama</th>
            <th>Email</th>
            <th>Username</th>
            <th>Status</th> 
            <th>Action</th>
        </tr>
    </thead>                     
        <tbody>
            @foreach($users as $user)
                <tr>
25
                    <td>{{$user->name}}</td>
PratiwiOkuli committed
26 27
                    <td>{{$user->email}}</td>
                    <td>{{$user->username}}</td>
28
                    <td>{{$user->status}}</td>
PratiwiOkuli committed
29 30
                    <td> 
                    <a href="{{ url('/editPetugas', $user->id) }}" type="submit" button type="button" class="btn btn-warning">Edit</a>
31
                     <a href="{{ url('/deletePetugas', $user->id) }}" type="submit" button type="button" class="btn btn-warning">Delete</a>
PratiwiOkuli committed
32 33 34 35 36
                </tr>
            @endforeach
    </tbody>
</table>
<a href="{{ url('/createPetugas') }}" button type="button" class="btn btn-info">Create</a></button>
37 38
@endsection