30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<a href="/panel/forum/category_list"><button class="btn btn-primary">Forum category management</button></a>
|
||
<a href="/panel/forum/search"><button class="btn btn-primary">Search</button></a>
|
||
<hr>
|
||
<form action="" method="post" >
|
||
|
||
<div class="form-actions">
|
||
<div class="control-group">
|
||
|
||
<div class="controls">
|
||
<input type="text" class="span12" name="username" value="" placeholder="Kullanıcı adını yazın">
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
<button type="submit" class="btn btn-success btn-block">Ara</button>
|
||
</div>
|
||
</form>
|
||
|
||
<hr>
|
||
<form action="" method="post">
|
||
@foreach ($konu as $key)
|
||
<label>
|
||
<input type="checkbox" id="check" name="forumDel[]" value="{{$key->id}}"> - {{$key->id}} - {{kelimebol($key->content,25)}} <hr>
|
||
</label>
|
||
@endforeach
|
||
<input type="hidden" name="delete" value="1">
|
||
<button type="submit" class="btn btn-danger">Delete</button>
|
||
</form>
|