public function run()
 {
     DB::table('priorliens')->delete();
     $collection = [['loan_id' => 1, 'type' => 'crop', 'lien_holder' => 'Mason Dixon Loans', 'city_state' => 'Rayville, LA', 'contact' => 'Rose Deveraux', 'phone' => '3189100035', 'email' => '*****@*****.**', 'description' => "2013 loan to cover daughter's braces and son's heart and lungs transplant", 'lien_amount' => 25000], ['loan_id' => 1, 'type' => 'crop', 'lien_holder' => 'Jean Lafitte Loans', 'city_state' => 'Monroe, LA', 'contact' => 'Montgomery Scott', 'phone' => '3188709080', 'email' => '*****@*****.**', 'description' => "2014 loan to cover wife's new car", 'lien_amount' => 45000], ['loan_id' => 2, 'type' => 'crop', 'lien_holder' => 'Vieux Carre Mortgage', 'city_state' => 'New Orleans, LA', 'contact' => 'Pavel Chekov', 'phone' => '5048709080', 'email' => '*****@*****.**', 'description' => "2014 loan to cover repair of roof", 'lien_amount' => 20000]];
     foreach ($collection as $record) {
         Priorlien::create($record);
     }
 }
Esempio n. 2
0
 public function update($id)
 {
     // save updated
     $record = $this->records->find($id);
     if (!$record) {
         Priorlien::create(Input::all());
         return $this->respond($record);
     }
     $record->fill(Input::all())->save();
     return $this->respond($record);
 }