Jul 22, 2022
0
Level 1
Laravel Nova: $this->resource is not returning the model
For me, $this->resource returns:
App\Models\{Model} {#1716
#connection: null
#table: null
#primaryKey: "id"
#keyType: "int"
+incrementing: true
#with: []
#withCount: []
#perPage: 15
+exists: false
+wasRecentlyCreated: false
#attributes: []
#original: []
#changes: []
#casts: []
#classCastCache: []
#dates: array:1 [
0 => "deleted_at"
]
#dateFormat: null
#appends: []
#dispatchesEvents: []
#observables: []
#relations: []
#touches: []
+timestamps: true
#hidden: []
#visible: []
#fillable: []
#guarded: array:1 [
0 => "*"
]
#forceDeleting: false
}
So, I'm unable to use $this->resource->deleted_at or some other property.
Any suggestion on how to fix this?
Please or to participate in this conversation.