|
Server : LiteSpeed System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : elvh3918 ( 1528) PHP Version : 8.2.31 Disable Function : mail Directory : /home/elvh3918/public_html/tenant/database/seeders/Master/ |
<?php
namespace Database\Seeders\Master;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
class ItemSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$now = Carbon::now();
DB::insert(
"INSERT INTO items (type, code, name, description, created_at, updated_at) VALUES
('Appetizers', 'Buffalo_Cauliflower_Wings', 'Buffalo Cauliflower Wings', 'This veggie riff on buffalo chicken wings is super easy to make in the oven', '$now', '$now'),
('Appetizers', 'Deviled_Eggs', 'Deviled Eggs', 'Garnish them with chopped chives, dill, and/or smoked paprika for a fun and festive look.', '$now', '$now'),
('Appetizers', 'Stuffed_Mushrooms', 'Stuffed Mushrooms', 'These bite-sized appetizers are simple and flavorful, filled with panko bread crumbs, pine nuts, parsley, sun-dried tomatoes, and cheese.', '$now', '$now'),
('Main Courses', 'Cedar_Plank_Salmon', 'Cedar-Plank Salmon', 'A big salmon fillet always feels like a festive main course, especially when it\'s cooked on a cedar grilling plank, so it picks up a whisper of smoky flavor. Kick off your seafood-themed dinner party with grilled oysters and pair the fish with a simple tomato salad', '$now', '$now'),
('Main Courses', 'Braised_Chicken_Legs_With_Grapes_and_Fennel', 'Braised Chicken Legs With Grapes and Fennel', 'There\'s nothing wrong with defaulting to chicken when you\'re trying to think of dinner party ideas. The key is to select a truly special chicken recipe, like this easy sweet-and-spicy braise, made with ribbons of fennel and juicy table grapes. You\'ll want to have a loaf of bread on the side for sopping up the sauce.', '$now', '$now'),
('Main Courses', 'Seared_Scallops_With_Brown_Butter_and_Lemon_Pan_Sauce', 'Seared Scallops With Brown Butter and Lemon Pan Sauce', 'Scallops are always a stunner, but these are dead simple to make: Juice lemons. Spoon out capers. Heat pan. Cook scallops. Make sauce in same pan. Serve.', '$now', '$now'),
('Main Courses', 'Grilled_Pizza', 'Grilled Pizza', 'Grilling pizza makes a main dish recipe into a party. This dough is designed for the grill—you can get creative with your toppings, or let your guests go wild. (Just don\'t get them started about whether you need New York tap water to make a superior slice.)', '$now', '$now'),
('Side Dishes', 'Air_Fryer_Vegetables', 'Air Fryer Vegetables', 'If you\’re not already roasting veggies in the air fryer, now\’s the time to start! They cook super quickly, and they have amazing crispy, caramelized edges. I love this colorful medley with Parmesan cheese, lemon juice, and fresh parsley on top.', '$now', '$now'),
('Side Dishes', 'Roasted_Carrots', 'Roasted Carrots', 'A touch of honey brings out the carrots\’ natural sweetness', '$now', '$now'),
('Side Dishes', 'Sautéed_Kale', 'Sautéed Kale', 'I\’m always trying to eat more leafy greens. This recipe makes it easy! In just 5 minutes, a whole bunch of kale wilts down into lemony, garlicky goodness.', '$now', '$now'),
('Desserts', 'Classic_chewy_chocolate_brownie', 'Classic chewy chocolate brownie', 'We believe the best kind of chocolate brownie recipe is the one that results the fudgy kind of brownies. If you think otherwise, trust us, these chocolate brownies are sure to change your mind. Originally created in the 1800s', '$now', '$now'),
('Desserts', 'Easy_banana_cake', 'Easy banana cake', 'Every cook needs a moist banana cake recipe that they keep coming back to, and we think this recipe is the only one you need. Not to be mistaken for banana bread, this recipe proves there\'s a difference between the two related', '$now', '$now'),
('Desserts', 'pavlova', 'pavlova', 'The age-old question, \‘who created the pavlova?\’ is one that causes tension between Australians and New Zealanders. The classic pavlova recipe, complete with its crispy meringue, made from egg whites, and whipped cream topping', '$now', '$now'),
('Desserts', 'Chocolate_mousse', 'Chocolate mousse', 'What\'s better than a decadent chocolate mousse recipe? A easy chocolate mousse recipe that\'s ready in mere minutes. With its timeless elegance, chocolate mousse is always in fashion. From its first appearance in France', '$now', '$now'),
('Beverages', 'Frozen_Lemonade_Concentrate', 'Frozen Lemonade Concentrate', 'This lemonade concentrate has zero twists and only two ingredients. First, there\'s lemon juice, naturally. Second, there\'s granulated sugar. Make it up to six months ahead and store in the freezer so it\'s ready anytime you need a refreshing cold drink.', '$now', '$now'),
('Beverages', 'Pink_Dragon_Smoothie', 'Pink Dragon Smoothie', 'This tropical fruit smoothie is sweetened with frozen dragon fruit puree and raspberries, while the creamy texture comes from Greek yogurt. You\'ll also note a slight earthy flavor from one small cooked beet, which adds even more fiber and color.', '$now', '$now'),
('Beverages', 'Mango_Smoothie', 'Mango Smoothie', 'We gave this mango smoothie some tang by blending in yogurt. Use a sweet, ripe mango for best results and cut the mango ahead of time—or buy frozen chunks if that seems like too much work.', '$now', '$now')
;"
);
}
}