update version 1.0.2.1
This commit is contained in:
@@ -135,7 +135,7 @@
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-md-1">
|
||||
<input type="checkbox" name="category_id[]" value="<?php echo $val;?>">
|
||||
<input type="radio" name="category_id[]" value="<?php echo $val;?>">
|
||||
</div>
|
||||
<div class="col-md-10">
|
||||
<?php echo $key;?>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
class="active"
|
||||
@stop
|
||||
@section('content')
|
||||
{!! Form::model($article,['url' => 'article/'.$article->slug , 'method' => 'PATCH'] )!!}
|
||||
{!! Form::model($article,['url' => 'article/'.$article->id , 'method' => 'PATCH'] )!!}
|
||||
<div class="row">
|
||||
<div class="box-body" >
|
||||
@if(Session::has('success'))
|
||||
@@ -117,7 +117,7 @@
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-md-1">
|
||||
<input type="checkbox" name="category_id[]" value="<?php echo $val;?>" <?php if (in_array($val, $assign)) {
|
||||
<input type="radio" name="category_id[]" value="<?php echo $val;?>" <?php if (in_array($val, $assign)) {
|
||||
echo ('checked');
|
||||
}
|
||||
?> ></div>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</script>
|
||||
|
||||
@section('content')
|
||||
{!! Form::model($category,['url' => 'category/'.$category->slug , 'method' => 'PATCH'] )!!}
|
||||
{!! Form::model($category,['url' => 'category/'.$category->id , 'method' => 'PATCH'] )!!}
|
||||
|
||||
|
||||
<div class="box box-primary">
|
||||
|
||||
@@ -263,7 +263,7 @@ $group = App\Model\helpdesk\Agent\Groups::where('name', '=', $agent_group)->wher
|
||||
</div>
|
||||
<div class="tabs-pane @yield('tools-bar')" id="tabD">
|
||||
<ul class="nav navbar-nav">
|
||||
<li id="bar" @yield('tools')><a href="{{ url('/canned/list') }}" >{!! Lang::get('lang.canned') !!}</a></li>
|
||||
<li id="bar" @yield('tools')><a href="{{ url('/canned/list') }}" >{!! Lang::get('lang.canned_response') !!}</a></li>
|
||||
<li id="bar" @yield('kb')><a href="{{ url('/comment') }}" >{!! Lang::get('lang.knowledge_base') !!}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user