mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 18:54:33 +00:00
6 lines
141 B
PHP
6 lines
141 B
PHP
<?php
|
|
|
|
class TestProduct {
|
|
public $description = 'This is the description of the test model';
|
|
public function find($id) { return $this; }
|
|
} |