我试图使用Laravel雄辩器从数据库中获取数据,但它没有返回任何数据。这是数据库结构
Region
- id
- name
District
- id
- name
- region\_id
Ward
- id
- name
- region\_id
因此,病房与地区无关,与地区相关。我怎样才能得到病房(数据)?我就是这样获取数据的
Area::with('region.district.ward')->get();
模型
Region.php
public function district()
{
return $this->hasMa
请关注这篇文章,而不是查看我下面的文章,请
我有这个代码,其中用户选择特定的医生类别,然后选择他想要查看的区域。在状态之后,他需要点击站点(在选定的地区) >>博士区>>站点
Here is the code
<html>
<body>
<form action="process.php" method="post">
<select name="cat">
<?php
$sql="select distinct Category from doctors o