इनपुट चर(चरों) के लिए डिफ़ॉल्ट गैर-शून्य मान सेट करें।
$contact = new Contact;
$contact->name = Input::get('name');
$contact->username = Input::get('username', '');
$contact->save();
या, हाल के Laravel संस्करणों में:
$contact = new Contact;
$contact->name = $request->input('name');
$contact->username = $request->input('username', '');
$contact->save();