I'm trying to work on my model using Laravel.
Table name: refregions
Model: app/Refregion
Controller: in one of my function I have this code:
$regions = Refregion::all();
And I defined the model on controller
use app\Refregion;
Can someone tell me why class cannot be found?
Thank you.