如何在laravel 4.2中从数据库返回数据数组的值?

时间:2015-09-09 19:30:46

标签: arrays laravel laravel-4 laravel-5 laravel-5.1

我有两个表格内容,类别

1-Category表是两个列名和cat_id

2-content有列标题,名称,cat_id,id

3 - 假设内容有三个多个cat_id

4现在我必须从类别表

中的值中获取名称

请参阅内容和类别表的附加照片enter image description here enter image description here

第一张照片是内容表

第二张图是类别表

public function AllStories()
{
    $cats = DB::table('content')
        ->join('category', 'content.Genres', '=', 'category.Genres')

        ->get();

    $AllStories=Content::all();

    return View::make('AlLStories')->with('AllStories',$AllStories)->with('cats',$cats);
}

现在我必须从类别表

中的值中获取名称

0 个答案:

没有答案