MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings
From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.
With Motoshare, every parked vehicle finds a purpose.
Owners earn. Renters ride.
🚀 Everyone wins.
@foreach ($users as $user)
This is user {{ $user->id }}
@endforeach.Code language: PHP (php)
foreach ($items as $item) {
echo $item;
}
// Using for loop
for ($i = 0; $i < count($items); $i++) {
echo $items[$i];
}Code language: PHP (php)
Problem
I’m trying to loop over a request in the controller but i get this error:
"Trying to get property 'produit_id' of non-object"
here is the code
foreach( $request->livraison as $livraison) {
$produit = Produit::find($livraison->produit_id);
}
when i dd($request->livraison) i get this:
array:1 [
0 => array:3 [
"produit_id" => 1
"quantite" => "43"
"montant" => "65"
]
]Code language: PHP (php)
Solution:
$livraison is array not object
foreach( $request->livraison as $livraison)
{
$produit = Produit::find($livraison['produit_id']);
}Code language: PHP (php)
Problem:
i have a problem about looping data in controller (laravel 4). my code is like this:
$owner = Input::get('owner');
$count = Input::get('count');
$product = Product::whereOwnerAndStatus($owner, 0)->take($count)->get();
when i want to use foreach to loop for $product result with code like this:
foreach ($product->sku as $sku) {
// Code Here
}Code language: PHP (php)
the result is returning error Undefined property: Illuminate\Database\Eloquent\Collection::$sku
so, i try to improvise a little with this code:
foreach ($product as $items) {
foreach ($items->sku as $sku) {
// Code Here
}
}Code language: PHP (php)
Solution
This will throw an error:
foreach ($product->sku as $sku){
// Code Here
}
because you cannot loop a model with a specific column ($product->sku) from the table.
So, you must loop on the whole model:
foreach ($product as $p) {
// code
}
Inside the loop you can retrieve whatever column you want just adding ->[column_name]
foreach ($product as $p) {
echo $p->sku;
}Code language: PHP (php)
Get Data from foreach loop in controller
$dis = array();
foreach($countries as $key => $value){
$dis[$key] = DB::table('divisions')->where('country_name', '=', $value->country_name)->get();
}Code language: PHP (php)
$event_ids = [];
foreach($top_selling_trips as $key => $value)
{
if($value->total_booking)
$event_ids[] = $value->id;
}Code language: PHP (php)