Roberto Di Marco

WordPress Theme Developer, WordPress Plugin Developer, WooCommerce Developer

How to fix “resource_url” undefined in Craftable – Laravel CRUD generator

You must edit app/Models/User.php and add the following code at the bottom

protected $appends = ['resource_url']; 
public function getResourceUrlAttribute() { return url('/admin/users/' . $this->getKey()); }

Commenti

Leave a Reply

Your email address will not be published. Required fields are marked *