Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed Jun 3, 2020
1 parent a9f88fb commit a24c154
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/Family.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,3 @@ public function getHusbandName()
}


}
2 changes: 1 addition & 1 deletion app/Tables/Builders/PlaceTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PlaceTable implements Table
public function query(): Builder
{
return Place::selectRaw('
places.id, places.name, places.title, places.date
places.id, places.title, places.date
');
}

Expand Down
2 changes: 2 additions & 0 deletions database/seeds/UserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ private function person()
return factory(Person::class)->create([
'title' => Titles::Mr,
'name' => 'Admin Root',
'givn' => 'Admin',
'surn' => 'Root',
'appellative' => 'Admin',
'email' => '[email protected]',
'birthday' => '1970-01-01',
Expand Down

0 comments on commit a24c154

Please sign in to comment.