我有這種模式的客戶:Laravel 5.1找雄辯返回null
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\softDeletes;
class Customer extends Model
{
use SoftDeletes;
protected $table = 'customers';
public $timestamps = true;
protected $dates = ['deleted_at'];
protected $fillable = ['name', ...
...
我無法理解的是: 當我試試這個:
$customer = Customer::all();
dd($customer);
我得到的結果
並嘗試此操作時:
$customer = Customer::find(1);
dd($customer);
我收到null
。
客戶表的模式如何? –
如果你正在使用softDelete爲customers表添加'deleted_at'列? –
模式::創建( '客戶',函數(藍圖$表){ \t \t \t $表 - >增量( '身份證'); \t \t \t $表 - >字符串( '名',150); \t \t \t $表 - >串( '地址',255); \t \t \t表 - $>串( '電話',30); \t \t \t \t \t \t $表 - >串( '傳真', 30); \t \t \t $ table-> softDeletes(); \t \t \t $ table-> timestamps(); \t \t \t \t \t}); – BKF