User::freshTimestamp()

Carbon freshTimestamp() Get a fresh timestamp for the model. Return Value Carbon

User::fresh()

$this|null fresh(array|string $with = array()) Reload a fresh model instance from the database. Parameters array|string $with Return Value $this|null

User::forceFill()

$this forceFill(array $attributes) Fill the model with an array of attributes. Force mass assignment. Parameters array $attributes Return Value $this

User::forceDelete()

bool|null forceDelete() Force a hard delete on a soft deleted model. This method protects developers from running forceDelete when trait is missing. Return Value bool|null

User::forceCreate()

static Model forceCreate(array $attributes) Save a new model and return the instance. Allow mass-assignment. Parameters array $attributes Return Value Model

User::flushEventListeners()

static void flushEventListeners() Remove all of the event listeners for the model. Return Value void

User::fillable()

$this fillable(array $fillable) Set the fillable attributes for the model. Parameters array $fillable Return Value $this

User::fill()

$this fill(array $attributes) Fill the model with an array of attributes. Parameters array $attributes Return Value $this Exceptions MassAssignmentException

User::destroy()

static int destroy(array|int $ids) Destroy the models for the given IDs. Parameters array|int $ids Return Value int

User::deleting()

static void deleting(Closure|string $callback, int $priority) Register a deleting model event with the dispatcher. Parameters Closure|string $callback int $priority Return Value void