本文整理汇总了PHP中Proveedor::where方法的典型用法代码示例。如果您正苦于以下问题:PHP Proveedor::where方法的具体用法?PHP Proveedor::where怎么用?PHP Proveedor::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Proveedor
的用法示例。
在下文中一共展示了Proveedor::where方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: post_index
public function post_index()
{
$buscado = Input::get('buscar');
$this->data[$this->views] = Proveedor::where('nombre', 'LIKE', $buscado . '%')->or_where('clave', 'LIKE', $buscado . '%')->order_by('id', 'asc')->paginate(PER_PAGE_MEDIUM);
return View::make('admin.' . $this->views . '.index', $this->data);
}
示例2: getRecupera
public function getRecupera($folio_factura)
{
$dataModule["status"] = 'add';
$dataModule["factura_error"] = Session::pull('factura_error');
$dataModule["boom"] = Session::pull('boom');
$dataModule["proveedores"] = Proveedor::where('activo', 1)->get();
$dataModule["material_colores"] = VistaMaterialColor::get();
$dataModule["altas"] = VistaFactura::all();
$dataModule["alta_r"] = VistaFactura::where('folio_factura', '=', $folio_factura)->firstorfail();
$dataModule["hoy"] = Carbon::now();
return View::make($this->department . ".main", $this->data)->nest('child', 'recubrimientos.material_alta', $dataModule);
}
示例3: index
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
//
$proveedores = Proveedor::where('farmacia_id', 1)->get();
return Response::json($proveedores, 200);
}