本文整理汇总了PHP中Tax::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::all方法的具体用法?PHP Tax::all怎么用?PHP Tax::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: compact
return View::make('erporders.orderitems', compact('items', 'locations', 'taxes', 'orderitems'));
});
Route::get('purchaseitems/remove/{id}', function ($id) {
Session::forget('orderitems', $id);
$orderitems = Session::get('orderitems');
$items = Item::all();
$locations = Location::all();
$taxes = Tax::all();
return View::make('erporders.orderitems', compact('items', 'locations', 'taxes', 'orderitems'));
});
Route::get('quotationitems/remove/{id}', function ($id) {
Session::forget('orderitems', $id);
$orderitems = Session::get('orderitems');
$items = Item::all();
$locations = Location::all();
$taxes = Tax::all();
return View::make('erporders.orderitems', compact('items', 'locations', 'taxes', 'orderitems'));
});
Route::resource('stocks', 'StocksController');
Route::resource('erporders', 'ErporderssController');
Route::post('erporder/commit', function () {
$erporder = Session::get('erporder');
$erporderitems = Session::get('orderitems');
$total = Input::all();
// $client = Client: :findorfail(array_get($erporder, 'client'));
// print_r($total);
$order = new Erporder();
$order->order_number = array_get($erporder, 'order_number');
$order->client()->associate(array_get($erporder, 'client'));
$order->date = date('Y-m-d', strtotime(array_get($erporder, 'date')));
$order->status = 'new';
示例2: index
/**
* Display a listing of branches
*
* @return Response
*/
public function index()
{
$taxes = Tax::all();
return View::make('taxes.index', compact('taxes'));
}
示例3: get_product_add
public function get_product_add()
{
$categories = Category::where('top', '=', '1')->get();
$products = Product::all();
$brands = Brand::all();
$tags = DB::table("product_descriptions")->get('tag');
$_tmpholder = array();
$_strholder = '';
foreach ($tags as $tag) {
$_instance = explode(',', $tag->tag);
foreach ($_instance as $item) {
array_push($_tmpholder, $item);
}
}
$_tmpholder = array_unique($_tmpholder);
$numItems = count($_tmpholder);
$i = 0;
foreach ($_tmpholder as $item) {
$_strholder .= '"' . $item . '"';
if (++$i !== $numItems) {
$_strholder .= ',';
}
}
$attributes = AttributeGroup::with('getChildrenGroup')->where('top', '=', 1)->get();
$taxes = Tax::all();
return View::make('administrator.product_add')->with('categories', $categories)->with('products', $products)->with('brands', $brands)->with('tags', $_strholder)->with('attributes', $attributes)->with('taxes', $taxes);
}