public function run() { DB::table('librarydoctypes')->delete(); $collection = [['doctype' => 'application'], ['doctype' => 'fillable'], ['doctype' => 'flyer'], ['doctype' => 'brochure'], ['doctype' => 'leaflet'], ['doctype' => 'pamphlet'], ['doctype' => 'newsletter']]; foreach ($collection as $record) { Librarydoctype::create($record); } }
public function update($id) { // save updated $record = $this->records->find($id); if (!$record) { Librarydoctype::create(Input::all()); return $this->respond($record); } $record->fill(Input::all())->save(); return $this->respond($record); }