Ooof, got the dependencies all up to date as well
Lots of tests needed fixing, but it seemed to be a whitespace parsing
error in the view files 🤔
This commit is contained in:
parent
ec01b3c6a2
commit
b2b6693aec
61 changed files with 2057 additions and 1441 deletions
|
@ -3,15 +3,15 @@
|
|||
@section('title')New Like « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>New Like</h1>
|
||||
<form action="/admin/likes/" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
<div>
|
||||
<label for="like_url">Like URL:</label>
|
||||
<input type="text" name="like_url" id="like_url" placeholder="Like URL">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="submit">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
<h1>New Like</h1>
|
||||
<form action="/admin/likes/" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
<div>
|
||||
<label for="like_url">Like URL:</label>
|
||||
<input type="text" name="like_url" id="like_url" placeholder="Like URL">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="submit">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
@stop
|
||||
|
|
|
@ -3,22 +3,22 @@
|
|||
@section('title')Edit Like « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>Edit Like</h1>
|
||||
<form action="/admin/likes/{{ $id }}" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('PUT') }}
|
||||
<div>
|
||||
<label for="like_url">Like URL:</label>
|
||||
<input type="text" name="like_url" id="like_url" value="{{ $like_url }}">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="edit">Edit</button>
|
||||
</div>
|
||||
</form>
|
||||
<hr>
|
||||
<form action="/admin/likes/{{ $id }}" method="post">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('DELETE') }}
|
||||
<button type="submit" name="delete">Delete Like</button>
|
||||
</form>
|
||||
<h1>Edit Like</h1>
|
||||
<form action="/admin/likes/{{ $id }}" method="post" accept-charset="utf-8" class="admin-form form">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('PUT') }}
|
||||
<div>
|
||||
<label for="like_url">Like URL:</label>
|
||||
<input type="text" name="like_url" id="like_url" value="{{ $like_url }}">
|
||||
</div>
|
||||
<div>
|
||||
<button type="submit" name="edit">Edit</button>
|
||||
</div>
|
||||
</form>
|
||||
<hr>
|
||||
<form action="/admin/likes/{{ $id }}" method="post">
|
||||
{{ csrf_field() }}
|
||||
{{ method_field('DELETE') }}
|
||||
<button type="submit" name="delete">Delete Like</button>
|
||||
</form>
|
||||
@stop
|
||||
|
|
|
@ -3,13 +3,16 @@
|
|||
@section('title')List Likes « Admin CP « @stop
|
||||
|
||||
@section('content')
|
||||
<h1>Likes</h1>
|
||||
<ul>
|
||||
@foreach($likes as $like)
|
||||
<li>{{ $like['url'] }}
|
||||
<a href="/admin/likes/{{ $like['id'] }}/edit">edit?</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
<p>Create a <a href="/admin/likes/create">new like</a>?</p>
|
||||
<h1>Likes</h1>
|
||||
<ul>
|
||||
@foreach($likes as $like)
|
||||
<li>
|
||||
{{ $like['url'] }}
|
||||
<a href="/admin/likes/{{ $like['id'] }}/edit">edit?</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
<p>
|
||||
Create a <a href="/admin/likes/create">new like</a>?
|
||||
</p>
|
||||
@stop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue