gpt4 book ai didi

php - 从 laravel 5.1 中的多个表中获取多行数据

转载 作者:行者123 更新时间:2023-11-29 01:16:18 25 4
gpt4 key购买 nike

在使用 laravel 5.1 框架开发管理控制面板时,我陷入了项目开发的困境。

我无法从包含多行的多个表中获取数据。这是我的场景

请检查这张图片,这是我的表结构。

[1] Offer Table - saves all offers

enter image description here

[2] Restaurant Table - Saves all restaurant information

enter image description here

[3] OfferImage Table - Saves all offers images

enter image description here

[4] FoodItem Table - saves all food items

enter image description here

我想做的是,显示图片中显示的所有报价 1 , 但这样做对我来说是相当困难的。

这是我的 Controller 代码

public function index()
{
$alldata=Offer::all(); //this line is correct

$offerimage=Offer_image::all(); //this 3 lines are logically incorrect
$restaurant=Restaurant::all();
$fooditem=Food_item::all();
return view('admin.listoffer',
compact('alldata','offerimage','restaurant','fooditem'));
}

这是我的代码

@foreach($alldata as $data)  
<tr role="row" class="odd">
<td class="sorting_1">{{ $data->offer_id }}</td>
<td>{{ $offerimage->img_filename }} !!}</td>
<td>{{ $restaurant->rest_name }}</td>
<td>{{ $fooditem->item_name }}</td>
<td>{{ $data->offer_code }}</td>
<td>{{ $data->description }}</td>
<td>{{ $data->total_price }}</td>
<td>{{ $data->disc_value }}</td>
<td>{{ $data->disc_percentage }}</td>
<td>{{ $data->status }}</td>
<td><a href="{{ Route('offer.edit',$data->rest_id) }}" class="btn btn-success">Edit</a><br>

{!! Form::open(array('route'=>['offer.destroy',$data->offer_id],'method'=>'delete')) !!}
{!! Form::hidden('id',$data->offer_id) !!}
{!! Form::submit('Delete',$attributes=array('class'=>'btn btn-danger')) !!}
{!! Form::close() !!}
</td>
</tr>
@endforeach

在上面的 Controller 中,我该如何编写代码才能从报价表中获取所有行,以及其他表中的数据。我搜索了 Laravel 5.1 文档和 Eloquent 关系,但我无法在任何关系中找到这种类型。

非常感谢您的帮助。

最佳答案

您需要将这些模型相互关联,才能按您的意愿行事。例如,让我们看一下优惠 - 餐厅关系。

我假设一家餐厅可以与许多优惠相关,但优惠只能与一家餐厅相关。在这种情况下,您会说 Restaurant hasMany Offers,而 Offer belongsTo Restaurant。

为了促进这种关系,您需要在 Offer 表中添加一个字段来存储与其相关的餐厅的 ID。从您的 Blade 代码来看,您似乎有一个 rest_id 字段,用于存储优惠的餐厅 ID。

将字段添加到 Offer 表后,您需要在模型中设置关系,如下所示:

class Offer extends Model {
// second parameter is the field on the offer table
// third parameter is the id field on the restaurant table
public function restaurant() {
return belongsTo('\App\Restaurant', 'rest_id', 'id');
}
}

class Restaurant extends Model {
// second parameter is the field on the offer table
// third parameter is the id field on the restaur
public function offers() {
return hasMany('\App\Offer', 'rest_id', 'id');
}
}

现在,关系设置正确后,您可以从优惠对象访问相关餐厅信息:

$offer = Offer::first();
$restaurant = $offer->restaurant;
$restaurantName = $offer->restaurant->rest_name;

对优惠图片和食品做同样的事情,你应该准备好了。此外,考虑到您访问数据的方式,最好提前加载相关模型,而不是上面示例中的延迟加载。例如:

$offer = Offer::with('restaurant', 'offerImage', 'foodItem')->first();
$restaurant = $offer->restaurant;
$restaurantName = $offer->restaurant->rest_name;

希望这有助于您入门,但最好阅读 relationship documentation .

编辑

根据评论进行编辑

获取所有行与获取一行的工作方式相同。唯一的区别是您获得了所有行的模型集合,而不是一行的一个模型。请注意使用 get() 方法而不是 all() 方法。 all() 是模型上的一个快捷方法,它只创建一个查询生成器对象并调用 get()。由于您正在修改要运行的查询(急于加载关系),因此您会获得一个查询生成器实例并对其调用 get() 以获取记录。

因此,您的代码如下所示:

// get all offers, with their relationships eager loaded
$offers = Offer::with('restaurant', 'offerImage', 'foodItem')->get();

// loop through each offer; do what you need to do.
foreach($offers as $offer) {
echo $offer->restaurant->rest_name;
}

关于php - 从 laravel 5.1 中的多个表中获取多行数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33194585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com