<?php

class Pituh {
    public function __get($name) {
        echo "Called " . $name . PHP_EOL;
    }
}

class LaraCart {
    static public function getItems() {
        return [new Pituh()];
    }
}

foreach ($cart = LaraCart::getItems() as $product) {         
    $product->id;      
       $product->name;      
       $product->title_slug;       
      $product->price;         
    $product->qty;      
       $product->photo;     
        $product->item_type;  
       }
