I can't understand where I made a mistake. The following is the error.
Symfony\Component\Debug\Exception\FatalThrowableError Class 'app\models\category' not found
class homepage extends Controller
{
public function index()
{
print_r(category::all());
die();
return view('frontend.homepage', $categories);
}
}
Error in line. print_r(category::all());die();