@extends('home.frame') @section('title', $menu->name) @section('keywords', $menu->keywords) @section('description', $menu->description) @section('img', $menu_up->img) @section('curr_title', $menu_up->name) @section('curr_ename', $menu_up->ename2) @section('menu', $menu_up->name) @section('menu_href', $menu_up->href) @section('menu_up', '首页') @section('menu_up_href', '/index') @section('content')
    @foreach ($model->getProductsFromMenuId( $menu->id ) as $product) @if ($leftOrRight = $product->sort % 2)
  • @else
  • @endif
    @if (!$leftOrRight)
    @endif @if ($leftOrRight)
    @else
    @endif

    {{ $product->name }}

    购买地址:
    @if ($product->href)

    {{ url($product->href) }}

    @else

    正在建设中,敬请期待~

    @endif
    产品介绍:
    {{ $product->txt }}
    @if ($leftOrRight)
    @endif
  • @endforeach
@stop