mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
45 lines
1.6 KiB
PHP
Executable File
45 lines
1.6 KiB
PHP
Executable File
|
|
@extends('layouts.main')
|
|
|
|
@section('title', __('permissions.permissions'))
|
|
|
|
@section('content')
|
|
|
|
<div class="col-lg-10 col-lg-offset-1">
|
|
<h1><i class="fa fa-key"></i>{{ __('permissions.available_permissions') }}
|
|
|
|
<a href="{{ route('users.index') }}" class="btn btn-default pull-right">{{ __('permissions.users') }}</a>
|
|
<a href="{{ route('roles.index') }}" class="btn btn-default pull-right">{{ __('permissions.roles') }}</a></h1>
|
|
<hr>
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>{{ __('permissions.permissions') }}</th>
|
|
<th>{{ __('permissions.operation') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($permissions as $permission)
|
|
<tr>
|
|
<td>{{ $permission->name }}</td>
|
|
<td>
|
|
<a href="{{ URL::to('permissions/'.$permission->id.'/edit') }}" class="btn btn-info pull-left" style="margin-right: 3px;">{{ __('permissions.edit') }}</a>
|
|
|
|
{{ Form::open(['method' => 'DELETE', 'route' => ['permissions.destroy', $permission->id] ]) }}
|
|
{{ Form::submit(__('permissions.delete'), ['class' => 'btn btn-danger']) }}
|
|
{{ Form::close() }}
|
|
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<a href="{{ URL::to('permissions/create') }}" class="btn btn-success">{{ __('permissions.add_permission') }}</a>
|
|
|
|
</div>
|
|
|
|
@endsection |