skip to Main Content

laravel foreach loop with 2k and get relation from 200k tack long long time

i have this model called Product and i have model called Note_voucher_line and this is relation inside product public function get_note_voucher_lines() { return $this->hasMany('AppModelsNote_voucher_line','product_id','id')->orderBy('date','asc')->orderBy('note_voucher_id','asc'); } now sometimes i have to loop products like this code $products = Product::whereBetween('id',[$num1,$num2])->get(); foreach($products as…

VIEW QUESTION

Php – Foreach Looping

Please advise me for best way to loop this data. I have data in my database like this $data = [ ['id' => 1, 'name' => 'Category A', 'parent_id' => null], ['id' => 2, 'name' => 'Subcategory A.1', 'parent_id' =>…

VIEW QUESTION

ASP.net display TextBox controls using a loop

On an aspx page I have several of the TextBox control rows added like this: <asp:Panel ID="panel1" runat="server" Visible="true"> <tr> <asp:TextBox ID="txt1" runat="server"</asp:TextBox> <asp:DropDownList ID="dd1" runat="server"> <asp:ListItem></asp:ListItem> <asp:ListItem></asp:ListItem> <asp:ListItem></asp:ListItem> </asp:DropDownList> </tr> <tr> <asp:TextBox ID="txt2" runat="server" ></asp:TextBox> <asp:DropDownList ID="dd2" runat="server"> <asp:ListItem></asp:ListItem>…

VIEW QUESTION
Back To Top
Search