Remove admin cp token views
This commit is contained in:
parent
f9751fe765
commit
5bcf2a19e6
3 changed files with 0 additions and 43 deletions
|
@ -1,13 +0,0 @@
|
||||||
@extends('master')
|
|
||||||
|
|
||||||
@section('title')
|
|
||||||
Delete Token? « Admin CP
|
|
||||||
@stop
|
|
||||||
|
|
||||||
@section('content')
|
|
||||||
<form action="/admin/tokens/delete/{{ $id }}" method="post">
|
|
||||||
<label for="delete">Are you sure you want to delete this token? </label><input type="checkbox" name="delete" id="delete">
|
|
||||||
<br>
|
|
||||||
<input type="submit" id="submit" value="Submit">
|
|
||||||
</form>
|
|
||||||
@stop
|
|
|
@ -1,9 +0,0 @@
|
||||||
@extends('master')
|
|
||||||
|
|
||||||
@section('title')
|
|
||||||
Token Deleted « Admin CP
|
|
||||||
@stop
|
|
||||||
|
|
||||||
@section('content')
|
|
||||||
<p>You have successfully deletd the token: {{ $id }}</p>
|
|
||||||
@stop
|
|
|
@ -1,21 +0,0 @@
|
||||||
@extends('master')
|
|
||||||
|
|
||||||
@section('title')
|
|
||||||
List Tokens « Admin CP
|
|
||||||
@stop
|
|
||||||
|
|
||||||
@section('content')
|
|
||||||
<h1>Tokens</h1>
|
|
||||||
<ul>
|
|
||||||
@foreach($tokens as $token => $data)
|
|
||||||
<li>{{ $token }}
|
|
||||||
<ul>
|
|
||||||
@foreach($data as $key => $value)
|
|
||||||
<li>{{ $key }}: <?php if(is_array($value)) { echo '<ul>'; foreach($value as $scope) { echo "<li>$scope</li>"; } echo '</ul>'; } else { echo $value; }; ?></li>
|
|
||||||
@endforeach
|
|
||||||
</ul>
|
|
||||||
<a href="/admin/tokens/delete/{{ $token }}">delete?</a>
|
|
||||||
</li>
|
|
||||||
@endforeach
|
|
||||||
</ul>
|
|
||||||
@stop
|
|
Loading…
Add table
Reference in a new issue