customer.php 337 Bytes
Newer Older
1 2 3
<?php

return [
4 5 6 7 8 9 10 11 12 13 14 15
    'customer1' => [
        'email' => 'customer1@example.com',
        'name' => 'customer1',
        'address' => 'address1',
        'status' => 1,
    ],
    'customer2' => [
        'email' => 'customer2@example.com',
        'name' => 'customer2',
        'address' => 'address2',
        'status' => 2,
    ],
16
];