18 lines
369 B
PHP
18 lines
369 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Brand;
|
|
use App\Settings\HomeSettings;
|
|
|
|
class HomePageController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$brands = Brand::query()->get(['id', 'image']);
|
|
$homeSettings = app(HomeSettings::class);
|
|
|
|
return view('web.pages.home.index', compact('homeSettings', 'brands'));
|
|
}
|
|
}
|