当我在我的控制器中写道它应该刷新我的视图中的页面,如果是按钮的图像......
我的控制器
public function getStatusLabelAttribute()
{
if ($this->isActive()) {
return "<label class='label label-success'>".trans('labels.general.active').'</label>';
}
return "<label class='label label-danger'>".trans('labels.general.inactive').'</label>';
}
我的按钮
<div class="inputbutton">
<span class="text">text</span>
<input type="submit" class="btTxt submit" value="" id="text" onclick="reply_click(this.id)"></div>
我的css
div.inputbutton input {
background: url('/img/MYimg.png') no-repeat;
cursor: pointer;
width: 100px;
height: 130px;
border: none;
background-size: 100%;
}
我的迁移文件
Schema::create('chaves',function (Blueprint $table){
$table -> increments('id');
$table -> string('nome');
$table -> boolean('alugado');
$table -> timestamps();
});