PHP code example of danilocgsilva / data-to-seed-laravel

1. Go to this page and download the library: Download danilocgsilva/data-to-seed-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

danilocgsilva / data-to-seed-laravel example snippets


DB::table('your_existing_table')->insert([
    'CODIGO_DO_PRODUTO' => '1000889',
    'NOME_DO_PRODUTO' => 'Sabor da Montanha - 700 ml - Uva',
    'EMBALAGEM' => 'Garrafa',
    'TAMANHO' => '700 ml',
    'SABOR' => 'Uva',
    'PRECO_DE_LISTA' => '6.309',
]);
DB::table('your_existing_table')->insert([
    'CODIGO_DO_PRODUTO' => '1002334',
    'NOME_DO_PRODUTO' => 'Linha Citros - 1 Litro - Lima/Limão',
    'EMBALAGEM' => 'PET',
    'TAMANHO' => '1 Litro',
    'SABOR' => 'Lima/Limão',
    'PRECO_DE_LISTA' => '7.004',
]);
DB::table('your_existing_table')->insert([
    'CODIGO_DO_PRODUTO' => '1002767',
    'NOME_DO_PRODUTO' => 'Videira do Campo - 700 ml - Cereja/Maça',
    'EMBALAGEM' => 'Garrafa',