title = __("Motor bike delivery"); $t->description = "Transport just for Tehran orders (pay by customer)"; $t->icon = 'ri-motorbike-line'; $t->is_default = false; $t->price = 0; $t->save(); $t = new Transport(); $t->title = __("Post office delivery"); $t->description = "Transport with post around country"; $t->icon = 'ri-signpost-line'; $t->is_default = true; $t->price = 30000; $t->save(); } }