【发布时间】:2016-09-18 14:14:03
【问题描述】:
我无法展示具有特定类别的产品,这是我的表格迁移和模型: 产品迁移:
Schema::create('products', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 255);
$table->string('slug');
$table->text('description');
$table->string('extract', 300);
$table->decimal('price', 5, 2);
$table->string('image', 300);
$table->boolean('visible');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')
->references('id')->on('users')
->onDelete('cascade');
$table->integer('category_id')->unsigned();
// relations
$table->foreign('category_id')
->references('id')
->on('categories')
->onDelete('cascade');
$table->timestamps();
模型产品
<?php
namespace dixard;
use Illuminate\Database\Eloquent\Model;
use dixard\User;
use dixard\Category;
use dixard\OrderItem;
use dixard\Color;
class Product extends Model
{
protected $table = 'products';
protected $fillable =
[
'name',
'slug',
'description',
'extract',
'image',
'visible',
'price',
'category_id',
'user_id'
];
public function user() {
return $this->belongsTo('dixard\User');
}
public function category() {
return $this->belongsTo('dixard\Category');
}
public function OrderItem() {
return $this->belongsTo('dixard\OrderItem');
}
public function Color() {
return $this->belongsTo('dixard\Color');
}
}
类别迁移
Schema::create('categories', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 255)->unique();
$table->string('slug');
$table->text('description');
$table->string('color', 30);
//$table->timestamps();
});
型号类别
use dixard\Product;
class Category extends Model
{
protected $table = 'categories';
protected $fillable = [
'name',
'slug',
'description',
'color',
];
public $timestamps = false;
public function products() {
return $this->hasMany('dixard\Product');
}
}
我正在尝试显示 category_id = 1 的所有产品,此类别 id=1 是我的 T 恤类别。我的控制器:
use dixard\Product;
use dixard\Category;
class TshirtController extends Controller
{
public function men_tshirt()
{
$category = Category::where('name', '=', 't-shirt')->orderBy('id', 'desc')->first();
$product_men = Product::where('category_id','=', $category->id)->orderBy('id', 'desc');
dd($product_man) OR
return view('store.shop.men',compact('product_men'));
// It doesnt work, doesnt show me nothing.
}
【问题讨论】:
-
好问题和好答案。拯救我的一天。谢谢。但我使用请求,然后检查我的查询字符串是什么,如果: if ($request->has('categories')) { return Categury::find($request->categories)->clinics; }
标签: php mysql laravel laravel-5.1