mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 10:44:32 +00:00
5 lines
179 B
PHP
5 lines
179 B
PHP
<?php namespace Acme\Test\Models;
|
|
class TestProduct {
|
|
public $description = 'This is the description of the namespaced test model';
|
|
public function find($id) { return $this; }
|
|
} |