Skip to content

Tag: php

Why I can not get model?

There are two models: class User extends Authenticatable { public function verifyUser() { return $this->hasOne(‘AppVerifyUser’); } } class VerifyUser extends Model { …

Laravel 6: Class ‘Form’ not found

I have a fresh Laravel 6 and I try to use Laravel forms but I got the error saying “Class ‘Form’ not found “. I tried the followings but still not working: 1). Add this to composer.json “require”: {…