gpt4 book ai didi

php - 需要在 Laravel 5.2 中更新表原始值

转载 作者:行者123 更新时间:2023-11-30 22:12:56 26 4
gpt4 key购买 nike

您好,我的数据库中有一张表作为许可。我需要原始更新表。看我的 edit.blade.php

@extends('layouts.app')@section('content') <div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h1 class="page-header"> Update Permission</h1>

@include('layouts.partials.alerts')
<div class="col-lg-6">
<form class="form-vertical" role="form" method="post" action="">
<div class="form-group{{ $errors->has('status') ? ' has-error' : '' }}">
<label for="status" class="control-label">Choose Status</label>
<select name="status" id="status">
<option value="{!! $permission->status !!}">{!! $permission->status !!}</option>
{{ getStatus($permission->status) }}
</select>
@if ($errors->has('status'))
<span class="help-block">{{ $errors->first('status') }}</span>
@endif
</div></div>@stop

但是我得到了这个错误

Undefined variable: permission (View: C:\Users\fernando\Desktop\c\resources\views\collaborators\edit.blade.php)

我该如何解决这个问题?

最佳答案

Blade 使用您从 Controller 传递的数据,例如 return view('collaborators.edit',['permission' => $permission);。您可能会收到该错误,因为您没有将权限对象发送到 View 。要检查将此 {{dd(get_defined_vars())}} 放在 @include('layouts.partials.alerts') 之后,这将转储 View 范围内定义的所有数据,检查是否有对象.

关于php - 需要在 Laravel 5.2 中更新表原始值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39469451/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com