ProductController.php 526 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Http\Controllers\Home;
  3. use App\Models\Product;
  4. use App\Http\Controllers\Home\BaseController;
  5. class ProductController extends BaseController
  6. {
  7. /* 视图文件相对路径 */
  8. protected $view = 'home.product';
  9. public function __construct(Product $product)
  10. {
  11. $this->product = $product;
  12. parent::__construct();
  13. }
  14. // 产品服务页面
  15. public function showProduct()
  16. {
  17. return $this->showSecondMenuView('pro', $this->view, $this->product);
  18. }
  19. }