Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 9, 2024
1 parent 8a7dd18 commit fef4d44
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 63 deletions.
2 changes: 1 addition & 1 deletion resources/views/partials/footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[
'title' => 'Highlights',
'links' => [
'Our Team' => '/team',
// 'Our Team' => '/team',
'Release Notes' => '/docs/' . DEFAULT_VERSION . '/releases',
'Getting Started' => '/docs/' . DEFAULT_VERSION . '/installation',
'Routing' => '/docs/' . DEFAULT_VERSION . '/routing',
Expand Down
124 changes: 62 additions & 62 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,68 +89,68 @@
]);
})->name('marketing');

Route::get('team', function () {
return view('team', [
'team' => [
[
'name' => 'Taylor Otwell',
'github_username' => 'taylorotwell',
'twitter_username' => 'taylorotwell',
'location' => 'United States',
], [
'name' => 'Dries Vints',
'github_username' => 'driesvints',
'twitter_username' => 'driesvints',
'location' => 'Belgium',
], [
'name' => 'James Brooks',
'github_username' => 'jbrooksuk',
'twitter_username' => 'jbrooksuk',
'location' => 'United Kingdom',
], [
'name' => 'Nuno Maduro',
'github_username' => 'nunomaduro',
'twitter_username' => 'enunomaduro',
'location' => 'Portugal',
], [
'name' => 'Mior Muhammad Zaki Mior Khairuddin',
'github_username' => 'crynobone',
'twitter_username' => 'crynobone',
'location' => 'Malaysia',
], [
'name' => 'Jess Archer',
'github_username' => 'jessarcher',
'twitter_username' => 'jessarchercodes',
'location' => 'Australia',
], [
'name' => 'Guus Leeuw',
'github_username' => 'phpguus',
'twitter_username' => 'phpguus',
'location' => 'Ireland',
], [
'name' => 'Tim MacDonald',
'github_username' => 'timacdonald',
'twitter_username' => 'timacdonald87',
'location' => 'Australia',
], [
'name' => 'Joe Dixon',
'github_username' => 'joedixon',
'twitter_username' => '_joedixon',
'location' => 'United Kingdom',
], [
'name' => 'Christoph Rumpel',
'github_username' => 'christophrumpel',
'twitter_username' => 'christophrumpel',
'location' => 'Austria',
], [
'name' => 'Mohamed Said',
'github_username' => 'themsaid',
'twitter_username' => 'themsaid',
'location' => 'Dubai',
],
]
]);
})->name('team');
// Route::get('team', function () {
// return view('team', [
// 'team' => [
// [
// 'name' => 'Taylor Otwell',
// 'github_username' => 'taylorotwell',
// 'twitter_username' => 'taylorotwell',
// 'location' => 'United States',
// ], [
// 'name' => 'Dries Vints',
// 'github_username' => 'driesvints',
// 'twitter_username' => 'driesvints',
// 'location' => 'Belgium',
// ], [
// 'name' => 'James Brooks',
// 'github_username' => 'jbrooksuk',
// 'twitter_username' => 'jbrooksuk',
// 'location' => 'United Kingdom',
// ], [
// 'name' => 'Nuno Maduro',
// 'github_username' => 'nunomaduro',
// 'twitter_username' => 'enunomaduro',
// 'location' => 'Portugal',
// ], [
// 'name' => 'Mior Muhammad Zaki Mior Khairuddin',
// 'github_username' => 'crynobone',
// 'twitter_username' => 'crynobone',
// 'location' => 'Malaysia',
// ], [
// 'name' => 'Jess Archer',
// 'github_username' => 'jessarcher',
// 'twitter_username' => 'jessarchercodes',
// 'location' => 'Australia',
// ], [
// 'name' => 'Guus Leeuw',
// 'github_username' => 'phpguus',
// 'twitter_username' => 'phpguus',
// 'location' => 'Ireland',
// ], [
// 'name' => 'Tim MacDonald',
// 'github_username' => 'timacdonald',
// 'twitter_username' => 'timacdonald87',
// 'location' => 'Australia',
// ], [
// 'name' => 'Joe Dixon',
// 'github_username' => 'joedixon',
// 'twitter_username' => '_joedixon',
// 'location' => 'United Kingdom',
// ], [
// 'name' => 'Christoph Rumpel',
// 'github_username' => 'christophrumpel',
// 'twitter_username' => 'christophrumpel',
// 'location' => 'Austria',
// ], [
// 'name' => 'Mohamed Said',
// 'github_username' => 'themsaid',
// 'twitter_username' => 'themsaid',
// 'location' => 'Dubai',
// ],
// ]
// ]);
// })->name('team');

Route::get('/frontend', function () {
return view('frontend');
Expand Down

0 comments on commit fef4d44

Please sign in to comment.