Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
karir.star4hire.com
/
modules
/
User
/
Views
/
admin
/
role
✏️
Editing: index.blade.php
@extends('admin.layouts.app') @section('content') <div class="container-fluid"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar">{{ __('Role')}}</h1> <div class="title-actions"> <a href="{{route('user.admin.role.verifyFields')}}" class="btn btn-warning"><i class="fa fa-check-circle-o"></i> {{ __('Verify Configs')}}</a> <a href="{{route('user.admin.role.permission_matrix')}}" class="btn btn-info">{{ __('Permission Matrix')}}</a> <a href="{{route('user.admin.role.create')}}" class="btn btn-primary">{{ __('Add new role')}}</a> </div> </div> @include('admin.message') <div class="panel"> <div class="panel-title">{{ __('All Roles')}}</div> <div class="panel-body"> <table class="table table-hover"> <thead> <tr> <th width="60px"><input type="checkbox" class="check-all"></th> <th width="60px">{{__("ID")}}</th> <th>{{ __('Name')}}</th> <th>{{ __('Code')}}</th> <th>{{ __('Date')}}</th> <th></th> </tr> </thead> <tbody> @foreach($rows as $row) <tr> <td><input type="checkbox" name="ids[]" value="{{$row->id}}"></td> <td>#{{$row->id}}</td> <td class="title"> <a href="{{route('user.admin.role.detail',['id' => $row->id])}}">{{ucfirst($row->name)}}</a> </td> <td>{{$row->code}}</td> <td>{{ display_date($row->updated_at)}}</td> <td> <a href="{{route('user.admin.role.detail',['id' => $row->id])}}" class="btn btn-default btn-sm"><i class="fa fa-edit"></i> {{__("Edit")}}</a> </td> </tr> @endforeach </tbody> </table> {{$rows->links()}} </div> </div> </div> @endsection
💾 Save Changes
❌ Cancel