如何应用定位类别或子类别ID号。并对其应用不同的属性

时间:2019-05-17 01:20:11

标签: laravel laravel-5

我正在为我的网站设置一个元标题。我希望能够为我的类别和子类别添加不同的标题。下面的例子

如果类别ID为4(使用此标题“从我们这里购买”) 如果类别ID是6(使用此标题“加拿大待售汽车”) 如果子类别ID为324(请使用“最佳配件”) 等

我已经尝试过了,但是没用

 if (cat->id=3){
    $title .= ' in ' . config('country.name') .' for sale | Prices on Lata.ng | Buy and sell online';
}
    if (cat->id=6){
$title .= ' in ' . config('country.name') .' for Buy| Best on Yakata.ng |';
}	
    view()->share('title', $title);	
    return $title;

2 个答案:

答案 0 :(得分:0)

使用此库在laravel中设置SEO标签:https://github.com/artesaos/seotools

答案 1 :(得分:0)

尝试

    if (cat->id==3){
    $title .= ' in ' . config('country.name') .' for sale | Prices on Lata.ng | Buy and sell online';
}
    if (cat->id==6){
$title .= ' in ' . config('country.name') .' for Buy| Best on Yakata.ng |';
}   
    view()->share('title', $title); 
    return $title;