Skip to content

Commit

Permalink
+ update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
azishapidin committed Mar 2, 2020
1 parent 18f5364 commit 9996fcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ $villages = Village::all();
// Cari berdasarkan nama
$provinces = Province::where('name', 'JAWA BARAT')->first();
$regencies = Regency::where('name', 'LIKE', '%CIANJUR%')->get();
$districts = District::where('name', 'LIKE', 'KABUPATEN%')->get();
$regencies = Regency::where('name', 'LIKE', '%CIANJUR%')->first();
$districts = District::where('name', 'LIKE', 'BANDUNG%')->get();
$villages = Village::where('name', 'BOJONGHERANG')->first();
```
Expand Down

0 comments on commit 9996fcf

Please sign in to comment.