Answer the question
In order to leave comments, you need to log in
How to organize classes?
The site has pages:
Answer the question
In order to leave comments, you need to log in
Create a method, pass parameters to the argument of this method, or whatever you need for the page you need.
PS. To work with the database, I recommend using redbeanphp.com
It's not very clear what the problem is. Use models for this
class PageController extends Controller
{
public function news()
{
$news = News::where('active', 1)->first();
return view('news', ['news' => $news]);
}
public function contacts()
{
$social = [/* ... */];
return view('contacts', ['social' => $social]);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question