update for version 1.0.2
This commit is contained in:
		| @@ -17,7 +17,7 @@ class="active" | ||||
| 	 | ||||
| <div class="box box-primary"> | ||||
| <div class="box-header with-border"> | ||||
| 	<h2 class="box-title">Canned Response</h2><a href="{{route('canned.create')}}" class="btn btn-primary pull-right">Create Canned Response</a></div> | ||||
| 	<h2 class="box-title">{!! Lang::get('lang.canned_response') !!}</h2><a href="{{route('canned.create')}}" class="btn btn-primary pull-right">{!! Lang::get('lang.create_canned_response') !!}</a></div> | ||||
| <div class="box-body table-responsive"> | ||||
| <?php  | ||||
| $Canneds = App\Model\helpdesk\Agent_panel\Canned::where('user_id', '=', Auth::user()->id)->paginate(20); | ||||
| @@ -51,10 +51,10 @@ $Canneds = App\Model\helpdesk\Agent_panel\Canned::where('user_id', '=', Auth::us | ||||
| 									<td>{{$Canned->title }}</td> | ||||
| 									<td>  | ||||
| 									{!! Form::open(['route'=>['canned.destroy', $Canned->id],'method'=>'DELETE']) !!} | ||||
| 										<a data-toggle="modal" data-target="#view{!! $Canned->id !!}" href="#" class="btn btn-info btn-xs btn-flat">View</a> | ||||
| 										<a href="{!! URL::route('canned.edit',$Canned->id) !!}" class="btn btn-primary btn-xs btn-flat">Edit</a> | ||||
| 										<a data-toggle="modal" data-target="#view{!! $Canned->id !!}" href="#" class="btn btn-info btn-xs btn-flat">{!! Lang::get('lang.view') !!}</a> | ||||
| 										<a href="{!! URL::route('canned.edit',$Canned->id) !!}" class="btn btn-primary btn-xs btn-flat">{!! Lang::get('lang.edit') !!}</a> | ||||
| 									 | ||||
| 										{!! Form::button('<i class="fa fa-trash" style="color:black;"> </i> Delete', | ||||
| 										{!! Form::button('<i class="fa fa-trash" style="color:black;"> </i> '.Lang::get('lang.delete'), | ||||
| 					                        ['type' => 'submit', | ||||
| 					                        'class'=> 'btn btn-warning btn-xs btn-flat', | ||||
| 					                        'onclick'=>'return confirm("Are you sure?")']) | ||||
| @@ -70,13 +70,13 @@ $Canneds = App\Model\helpdesk\Agent_panel\Canned::where('user_id', '=', Auth::us | ||||
| 								            <div class="modal-content"> | ||||
| 								                <div class="modal-header"> | ||||
| 								                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | ||||
| 								                    <h4 class="modal-title">Surrender</h4> | ||||
| 								                    <h4 class="modal-title">{!! Lang::get('lang.surrender') !!}</h4> | ||||
| 								                </div> | ||||
| 								                <div class="modal-body"> | ||||
| 								                    <p><pre>{!! $Canned->message !!}</pre></p> | ||||
| 								                </div> | ||||
| 								                <div class="modal-footer"> | ||||
| 								                    <button type="button" class="btn btn-default pull-left" data-dismiss="modal" id="dismis6">Close</button> | ||||
| 								                    <button type="button" class="btn btn-default pull-left" data-dismiss="modal" id="dismis6">{!! Lang::get('lang.close') !!}</button> | ||||
| 								                </div> | ||||
| 								            </div><!-- /.modal-content --> | ||||
| 								        </div><!-- /.modal-dialog --> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sujitprasad
					sujitprasad