Skip to content

Commit b8e4381

Browse files
committed
m1
1 parent 45cbc99 commit b8e4381

File tree

6 files changed

+95
-34
lines changed

6 files changed

+95
-34
lines changed

.idea/workspace.xml

+80-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/Http/Controllers/ControllerZakaria.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
namespace App\Http\Controllers;
1010

1111

12-
class ControllerZakaria {
12+
class ControllerZakaria extends Controller{
1313

1414
public function login(){
15-
return "hello";
16-
//return View('index');
15+
return View('index');
1716
}
1817

1918
public function dashboard(){

app/Http/routes.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
'uses' => 'ControllerZakaria@login'
1717
]);
1818

19-
Route::get('/', [
19+
Route::get('/dashboard', [
2020
'as' => 'dashboard',
2121
'uses' => 'ControllerZakaria@dashboard'
2222
]);
2323

24-
Route::get('/', [
24+
Route::get('/forgot', [
2525
'as' => 'forgot',
2626
'uses' => 'ControllerZakaria@forgot'
2727
]);

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/app.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
|
1414
*/
1515

16-
'debug' => env('APP_DEBUG', false),
16+
'debug' => env('APP_DEBUG', true),
1717

1818
/*
1919
|--------------------------------------------------------------------------

vendor/composer/autoload_classmap.php

+9
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,32 @@
66
$baseDir = dirname($vendorDir);
77

88
return array(
9+
'App\\Agent' => $baseDir . '/app/Agent.php',
10+
'App\\Ci' => $baseDir . '/app/Ci.php',
911
'App\\Console\\Commands\\Inspire' => $baseDir . '/app/Console/Commands/Inspire.php',
1012
'App\\Console\\Kernel' => $baseDir . '/app/Console/Kernel.php',
13+
'App\\Contact' => $baseDir . '/app/Contact.php',
1114
'App\\Events\\Event' => $baseDir . '/app/Events/Event.php',
1215
'App\\Exceptions\\Handler' => $baseDir . '/app/Exceptions/Handler.php',
16+
'App\\Fact' => $baseDir . '/app/Fact.php',
1317
'App\\Http\\Controllers\\Auth\\AuthController' => $baseDir . '/app/Http/Controllers/Auth/AuthController.php',
1418
'App\\Http\\Controllers\\Auth\\PasswordController' => $baseDir . '/app/Http/Controllers/Auth/PasswordController.php',
1519
'App\\Http\\Controllers\\Controller' => $baseDir . '/app/Http/Controllers/Controller.php',
20+
'App\\Http\\Controllers\\ControllerAyoub' => $baseDir . '/app/Http/Controllers/ControllerAyoub.php',
21+
'App\\Http\\Controllers\\ControllerZakaria' => $baseDir . '/app/Http/Controllers/ControllerZakaria.php',
1622
'App\\Http\\Kernel' => $baseDir . '/app/Http/Kernel.php',
1723
'App\\Http\\Middleware\\Authenticate' => $baseDir . '/app/Http/Middleware/Authenticate.php',
1824
'App\\Http\\Middleware\\EncryptCookies' => $baseDir . '/app/Http/Middleware/EncryptCookies.php',
1925
'App\\Http\\Middleware\\RedirectIfAuthenticated' => $baseDir . '/app/Http/Middleware/RedirectIfAuthenticated.php',
2026
'App\\Http\\Middleware\\VerifyCsrfToken' => $baseDir . '/app/Http/Middleware/VerifyCsrfToken.php',
2127
'App\\Http\\Requests\\Request' => $baseDir . '/app/Http/Requests/Request.php',
2228
'App\\Jobs\\Job' => $baseDir . '/app/Jobs/Job.php',
29+
'App\\Kb' => $baseDir . '/app/Kb.php',
2330
'App\\Providers\\AppServiceProvider' => $baseDir . '/app/Providers/AppServiceProvider.php',
2431
'App\\Providers\\EventServiceProvider' => $baseDir . '/app/Providers/EventServiceProvider.php',
2532
'App\\Providers\\RouteServiceProvider' => $baseDir . '/app/Providers/RouteServiceProvider.php',
33+
'App\\Ticket' => $baseDir . '/app/Ticket.php',
34+
'App\\Time' => $baseDir . '/app/Time.php',
2635
'App\\User' => $baseDir . '/app/User.php',
2736
'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php',
2837
'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php',

0 commit comments

Comments
 (0)