你好,我不能取消删除我的数据为什么?这是我的密码
在控制器上
public function displayArchive()
{
$clients = Client::withTrashed();
return view('admin.clients.homeArchive')->with('clients', $clients);
}
其中之一就是风景
<table class="table table-bordered" id="dynamic_field">
<tr>
<th>Client Code</th>
<th>Client Name</th>
<th>Address</th>
<th>Tel No.</th>
<th>Contact Person</th>
<th>Mobile No.</th>
<th>Email Address</th>
<th>Website</th>
<th>Status</th>
<th>Update</th>
</tr>
@foreach ($clients as $client)
<tr>
<td>{{ $client->client_code }}</td>
<td>{{ $client->client_name }}</td>
<td>{{ $client->address }}</td>
<td>{{ $client->tel_no }}</td>
<td>{{ $client->contact_person }}</td>
<td>{{ $client->mobile_no }}</td>
<td>{{ $client->email_ad }}</td>
<td>{{ $client->website }}</td>
<td><a href="#" class="btn btn-danger">Inactive</a></td>
<td><a href="/admin/clients/{{ $client->id }}/edit" class="fa fa-edit btn btn-primary"></a></td>
</tr>
@endforeach
</table>
在这里你可以在网上看到我如何调用我的控制器和查看网页。
Route::get('/admin/clients/homeArchive', 'Admin\ClientsController@displayArchive');
这里是编辑代码请看一下我的模型
use SoftDeletes;
protected $dates = ['deleted_at'];
// Table Name
protected $table = 'clients';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
1条答案
按热度按时间qfe3c7zg1#
你能试一下吗
->get()
方法。注意:它不会取消删除任何数据。它只获取已删除行的数据。
如果要恢复已删除的数据,必须使用
->restore()
方法。所有恢复的所有数据;
链接:
路线:
控制器操作:
逐行恢复数据;
链接:
路线:
控制器操作: