コード例 #1
0
 public function __construct()
 {
     $this->user = Auth::user();
     $this->streets = Street::all();
 }
コード例 #2
0
 public function streets()
 {
     $streets = Street::all();
     return response()->json($streets);
 }