在html页面中,我想恢复金额的值,并且只能在管理面板中更改该值。
在文件navbar.blade.php中,我有250个用于示例编辑的数量。
<div class="header-widgets hidden-xs" style="padding:0px;padding-top: 60px;">
<div id="text-3" class="widget widget_text">
<div class="textwidget">
<div class="info-icon">
<img src="/img/time.png">
<span style="font-size: 22px;color: #0d3863;font-weight: bold;"> 250</span>
</div>
</div>
</div>
</div>
我只是想编辑金额(250)... 在我的名为tarrifcontroller的控制器中,有这个功能。
public function edit(Tariff $tariff)
{
return view('admin.tariffs.edit', compact('tariff'));
}
public function update(Request $request, Tariff $tariff)
{
$tariff->valeur = strip_tags($request->input('amount'));
$tariff->save();
return redirect('/tariffs');
}
在我的edit.blade.php中,我拥有
@section('content')
<div class="px-content">
<div class="page-header">
<div class="row">
<div class="col-md-4 text-xs-center text-md-left text-nowrap">
<h1><i class="px-nav-icon ion-android-apps"></i>Tarif {{$tariff->id}} </h1>
</div>
<hr class="page-wide-block visible-xs visible-sm">
<!-- Spacer -->
<div class="m-b-2 visible-xs visible-sm clearfix"></div>
</div>
</div>
<div class="row">
<div class="panel">
<div class="panel-body">
<div class="table-responsive">
<form class="panel-body" action="/tariff/edit/{{$tariff->id}}" method="POST">
@csrf
<fieldset class="form-group">
<label for="form-group-input-1">Amount</label>
<input type="text" name="amount" class="form-control" id="form-group-input-1" value="{{$tariff->amount}}">
</fieldset>
<button type="submit" class="btn btn-primary pull-right">MAJ</button>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
我的问题现在在navbar.blade.php中,我该如何做250才能与我的编辑/更新功能进行交互?
<span style="font-size: 22px;color: #0d3863;font-weight: bold;"> 250</span>
谢谢
答案 0 :(得分:0)
我没有laravel的经验,但我想像其他任何php框架一样,您可以从控制器回显变量以查看
<span style="font-size: 22px;color: #0d3863;font-weight: bold;"> <?php echo $variable ?></span>
经过一些搜索:您可以使用with方法将数据传递到视图。
return View::make('blog')->with('posts', $posts);