File: /home/armgroup/libs/app/Http/Controllers/Frontend/BrandController.php
<?php
namespace App\Http\Controllers\Frontend;
use App\Http\Controllers\Controller;
use App\Models\Brand;
use Artesaos\SEOTools\Facades\SEOTools;
class BrandController extends Controller
{
public function index()
{
SEOTools::setTitle(settings('brands-title'));
SEOTools::setDescription(settings('brands-description'));
$brands = Brand::query()
->select('name', 'slug')
->paginate($this->pageLimit);
return view('frontend.brands.index', compact('brands'));
}
}