server ver

This commit is contained in:
2021-06-20 13:49:07 +00:00
parent 36a8c92dec
commit 8877c0bad0
975 changed files with 555 additions and 6596 deletions

18
resources/views/layout5/index.blade.php Normal file → Executable file
View File

@@ -1,16 +1,20 @@
@extends('profilelayout')
@section('content')
<div class="page-header">
<h3 id="index">Index</h3>
<h3 id="index">Index <small>{{ $number_of_results }} results</small></h3>
<form method="get">
<button type="submit" class="suchbutton"><i style="color:white;" class="fa fa-search"></i></button>
{!! Form::text('q', isset($q) ? $q : null, ['class' => 'suchleiste', 'placeholder' => 'Search w0bm.com']) !!}
</form>
</div>
<div class="">
{!! $videos->render() !!}
</div>
<table class="table table-hover table-condensed">
<thead>
<tr>
<th>ID</th>
<th>ID</th>
<th>Video Title</th>
<th>Artist</th>
<th>Songtitle</th>
<th class="hidden-xs">Video Source</th>
@@ -31,6 +35,12 @@
@if($edit)
<input type="submit" class="btn btn-primary" value="Save" form="edit_{{$video->id}}">
@endif
</td>
<td>
<span class="vinfo vvideotitle">{{$video->videotitle or ''}}</span>
@if($edit)
<input class="form-control" type="text" name="videotitle" value="{{$video->videotitle or ''}}" form="edit_{{$video->id}}">
@endif
</td>
<td>
<span class="vinfo vinterpret">{{$video->interpret or ''}}</span>
@@ -64,8 +74,4 @@
@endforeach
</tbody>
</table>
<div class="">
{!! $videos->render() !!}
</div>
@endsection