Skip to content

Instantly share code, notes, and snippets.

@lagbox
Last active October 2, 2019 19:09
Show Gist options
  • Save lagbox/e85d52560dac1546249c2d7cc3627678 to your computer and use it in GitHub Desktop.
Save lagbox/e85d52560dac1546249c2d7cc3627678 to your computer and use it in GitHub Desktop.
<?php
Route::get('/{type?}', function ($type = "") {
// if (in_array($type, ['buy', 'sell'])) {
if ($type == 'buy' || $type == 'sell') {
return view('home', [
'country' => app('App\Http\Controllers\CountriesController')->getCountry(),
]);
}
return redirect('buy');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment