从数据库中检索数据并在之后形成数据的好方法是什么:
目前我的控制器中有这个show方法:
public function showProduct($productID = 0)
{
$product = Product::find($productID);
$companies = Companies::where('active', '=', 1)->orderBy('sort', 'Asc')->get();
return view('product.show', ['product' => $product, 'companies' => $companies]);
}
在我的show.blade.php中我检索这样的数据:
@extends('layouts.master')
@section('content')
{{ $product }}
@endsection
但是它只是向我展示了一个数组中的数据,我怎样才能让它变得更漂亮,比如创建一个表并进行排序....
答案 0 :(得分:0)
例如:
@extends('layouts.master')
@section('content')
<h1>{{$product->title}}</h1>
<p>{{$product->text}}</p>
@endsection