Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

create a custom method laravel model

<?php
namespace AppTraits;

trait EmailConfirmation
{
    /**
     * Set email_verified_at to now and save.
     *
     */
    public function confirmEmailNow()
    {
        $this->email_verified_at = now();
        $this->save();
        return $this;
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #custom #method #laravel #model
ADD COMMENT
Topic
Name
6+2 =