Я использую Laravel 5.6, и это моя модель
class Careers extends Model
{
//
protected $guarded=[];
}
, и я получаю этот вывод из CareersController @ show method
Careers {#592 ▼
#guarded: []
#connection: null
#table: null
#primaryKey: "id"
#keyType: "int"
+incrementing: true
#with: []
#withCount: []
#perPage: 15
+exists: false
+wasRecentlyCreated: false
#attributes: []
#original: []
#changes: []
#casts: []
#dates: []
#dateFormat: null
#appends: []
#dispatchesEvents: []
#observables: []
#relations: []
#touches: []
+timestamps: true
#hidden: []
#visible: []
#fillable: []
}
, а метод show имеет вид
public function show(Careers $careers)
{
// return view('admin.careers.show',['career'=> $careers]);
dd($careers);
}
Даже я пытался получить вывод из представления, показывающего пробел.