当前位置: 首页>>代码示例>>PHP>>正文


PHP Property::all方法代码示例

本文整理汇总了PHP中Property::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Property::all方法的具体用法?PHP Property::all怎么用?PHP Property::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Property的用法示例。


在下文中一共展示了Property::all方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testAll

 public function testAll()
 {
     $expected = array('$all' => array('a', 'b', 'c'));
     $property = new Property($this->getMockQuery());
     $property->all(array('a', 'b', 'c'));
     $this->assertEquals($expected, $property->getConstraints());
 }
开发者ID:rickyrobinett,项目名称:morph,代码行数:7,代码来源:TestProperty.php

示例2: edit

 /**
  * Show the form for editing the specified resource.
  * GET /houses/{id}/edit
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $paymenttypes = Paymenttype::find($id);
     $properties = Property::all();
     if (is_null($paymenttypes)) {
         return Redirect::route('paymenttype.index');
     }
     return View::make('backend.code.paymenttype.edit', compact('paymenttypes', 'properties'));
 }
开发者ID:jeremiteki,项目名称:mteja-laravel,代码行数:16,代码来源:PaymentTypeController.php

示例3: addTenant

 public function addTenant()
 {
     $properties = Property::all();
     return View::make('backend.code.property.tenantadd', compact('properties'));
 }
开发者ID:jeremiteki,项目名称:mteja,代码行数:5,代码来源:HousController.php

示例4: all

 public function all()
 {
     return Property::all();
 }
开发者ID:sahilkathpal,项目名称:hackcoin,代码行数:4,代码来源:PropertiesController.php

示例5: getIndex

 /**
  * Display a listing of properties
  *
  * @return Response
  */
 public function getIndex()
 {
     $properties = Property::all();
     return View::make('properties.index', compact('properties'));
 }
开发者ID:jonagoldman,项目名称:channelmanager,代码行数:10,代码来源:PropertiesController.php

示例6: create

 /**
  * Show the form for creating a new resource.
  * GET /houses/create
  *
  * @return Response
  */
 public function create()
 {
     $properties = Property::all();
     $frequencies = Frequency::all();
     return View::make('backend.code.houses.create', compact('houses', 'frequencies'));
 }
开发者ID:jeremiteki,项目名称:mteja,代码行数:12,代码来源:HousesController.php

示例7: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $properties = $this->property->all();
     return View::make('admin.properties.index', compact('properties'));
 }
开发者ID:jacobDaeHyung,项目名称:Laravel-Real-Estate-Manager,代码行数:10,代码来源:PropertiesController.php


注:本文中的Property::all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。