Skip to content

Instantly share code, notes, and snippets.

View hernanharco's full-sized avatar

Hernán Arango Cortes - harco hernanharco

View GitHub Profile
@codigoconjuan
codigoconjuan / CategoriaSeeder.php
Created January 19, 2023 20:22
Seeder de Categorias para Laravel y React
DB::table('categorias')->insert([
'nombre' => 'Café',
'icono' => 'cafe',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
]);
DB::table('categorias')->insert([
'nombre' => 'Hamburguesas',
'icono' => 'hamburguesa',
@codigoconjuan
codigoconjuan / ProductoSeeder.php
Created January 20, 2023 22:36
Productos Proyecto Laravel + React
$datos = [
array(
'nombre' => "Café Caramel con Chocolate",
'precio' => 59.9,
'imagen' => "cafe_01",
'categoria_id' => 1,
'disponible' => true,
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
),
@codigoconjuan
codigoconjuan / beautyServices.js
Last active August 12, 2023 19:09
Gist Servicios de salón de belleza
export const services = [
{
name: 'Corte de cabello para hombres',
price: 100
},
{
name: 'Corte de cabello para mujeres',
price: 120
},
{