-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of Administrator Login & Dashboard
- Loading branch information
Showing
6 changed files
with
362 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\Contracts\Auth\StatefulGuard; | ||
use Illuminate\Http\Request; | ||
use Illuminate\Routing\Controller; | ||
use Illuminate\Routing\Pipeline; | ||
use App\Actions\Fortify\AttemptToAuthenticate; | ||
use Illuminate\Support\Facades\Auth; | ||
use Laravel\Fortify\Actions\EnsureLoginIsNotThrottled; | ||
use Laravel\Fortify\Actions\PrepareAuthenticatedSession; | ||
use App\Actions\Fortify\RedirectIfTwoFactorAuthenticatable; | ||
use App\Http\Responses\AdminLoginResponse; | ||
use Laravel\Fortify\Contracts\LoginViewResponse; | ||
use App\Http\Responses\AdminLogoutResponse; | ||
use Laravel\Fortify\Features; | ||
use Laravel\Fortify\Fortify; | ||
use Laravel\Fortify\Http\Requests\LoginRequest; | ||
|
||
class AdminController extends Controller | ||
{ | ||
/** | ||
* The guard implementation. | ||
* | ||
* @var \Illuminate\Contracts\Auth\StatefulGuard | ||
*/ | ||
protected $guard; | ||
|
||
/** | ||
* Create a new controller instance. | ||
* | ||
* @param \Illuminate\Contracts\Auth\StatefulGuard $guard | ||
* @return void | ||
*/ | ||
public function __construct(StatefulGuard $guard) | ||
{ | ||
$this->guard = $guard; | ||
|
||
} | ||
|
||
public function loginForm(){ | ||
return view('auth.login',['guard'=>'admin']); | ||
} | ||
|
||
/** | ||
* Show the login view. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @return \Laravel\Fortify\Contracts\LoginViewResponse | ||
*/ | ||
public function create(Request $request): LoginViewResponse | ||
{ | ||
return app(LoginViewResponse::class); | ||
} | ||
|
||
/** | ||
* Attempt to authenticate a new session. | ||
* | ||
* @param \Laravel\Fortify\Http\Requests\LoginRequest $request | ||
* @return mixed | ||
*/ | ||
public function store(LoginRequest $request) | ||
{ | ||
|
||
return $this->loginPipeline($request)->then(function ($request) { | ||
return app(AdminLoginResponse::class); | ||
}); | ||
} | ||
|
||
/** | ||
* Get the authentication pipeline instance. | ||
* | ||
* @param \Laravel\Fortify\Http\Requests\LoginRequest $request | ||
* @return \Illuminate\Pipeline\Pipeline | ||
*/ | ||
protected function loginPipeline(LoginRequest $request) | ||
{ | ||
if (Fortify::$authenticateThroughCallback) { | ||
return (new \Illuminate\Pipeline\Pipeline(app()))->send($request)->through(array_filter( | ||
call_user_func(Fortify::$authenticateThroughCallback, $request) | ||
)); | ||
} | ||
|
||
if (is_array(config('fortify.pipelines.login'))) { | ||
return (new Pipeline(app()))->send($request)->through(array_filter( | ||
config('fortify.pipelines.login') | ||
)); | ||
} | ||
|
||
return (new Pipeline(app()))->send($request)->through(array_filter([ | ||
config('fortify.limiters.login') ? null : EnsureLoginIsNotThrottled::class, | ||
Features::enabled(Features::twoFactorAuthentication()) ? RedirectIfTwoFactorAuthenticatable::class : null, | ||
AttemptToAuthenticate::class, | ||
PrepareAuthenticatedSession::class, | ||
])); | ||
} | ||
|
||
/** | ||
* Destroy an authenticated session. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @return \Laravel\Fortify\Contracts\LogoutResponse | ||
*/ | ||
public function destroy(Request $request): AdminLogoutResponse | ||
{ | ||
Auth::guard('admin')->logout(); | ||
|
||
$request->session()->invalidate(); | ||
|
||
$request->session()->regenerateToken(); | ||
|
||
return app(AdminLogoutResponse::class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\Contracts\Auth\StatefulGuard; | ||
use Illuminate\Http\Request; | ||
use Illuminate\Routing\Controller; | ||
use Illuminate\Routing\Pipeline; | ||
use App\Actions\Fortify\AttemptToAuthenticate; | ||
use Illuminate\Support\Facades\Auth; | ||
use Laravel\Fortify\Actions\EnsureLoginIsNotThrottled; | ||
use Laravel\Fortify\Actions\PrepareAuthenticatedSession; | ||
use App\Actions\Fortify\RedirectIfTwoFactorAuthenticatable; | ||
use App\Http\Responses\AdminLoginResponse; | ||
use Laravel\Fortify\Contracts\LoginViewResponse; | ||
use App\Http\Responses\LogoutResponse; | ||
use Laravel\Fortify\Features; | ||
use Laravel\Fortify\Fortify; | ||
use Laravel\Fortify\Http\Requests\LoginRequest; | ||
|
||
class UserController extends Controller | ||
{ | ||
/** | ||
* The guard implementation. | ||
* | ||
* @var \Illuminate\Contracts\Auth\StatefulGuard | ||
*/ | ||
protected $guard; | ||
|
||
/** | ||
* Create a new controller instance. | ||
* | ||
* @param \Illuminate\Contracts\Auth\StatefulGuard $guard | ||
* @return void | ||
*/ | ||
public function __construct(StatefulGuard $guard) | ||
{ | ||
$this->guard = $guard; | ||
} | ||
|
||
public function loginForm(){ | ||
return view('auth.login',['guard'=>'admin']); | ||
} | ||
|
||
/** | ||
* Show the login view. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @return \Laravel\Fortify\Contracts\LoginViewResponse | ||
*/ | ||
public function create(Request $request): LoginViewResponse | ||
{ | ||
return app(LoginViewResponse::class); | ||
} | ||
|
||
/** | ||
* Attempt to authenticate a new session. | ||
* | ||
* @param \Laravel\Fortify\Http\Requests\LoginRequest $request | ||
* @return mixed | ||
*/ | ||
public function store(LoginRequest $request) | ||
{ | ||
|
||
return $this->loginPipeline($request)->then(function ($request) { | ||
return app(AdminLoginResponse::class); | ||
}); | ||
} | ||
|
||
/** | ||
* Get the authentication pipeline instance. | ||
* | ||
* @param \Laravel\Fortify\Http\Requests\LoginRequest $request | ||
* @return \Illuminate\Pipeline\Pipeline | ||
*/ | ||
protected function loginPipeline(LoginRequest $request) | ||
{ | ||
if (Fortify::$authenticateThroughCallback) { | ||
return (new \Illuminate\Pipeline\Pipeline(app()))->send($request)->through(array_filter( | ||
call_user_func(Fortify::$authenticateThroughCallback, $request) | ||
)); | ||
} | ||
|
||
if (is_array(config('fortify.pipelines.login'))) { | ||
return (new \Illuminate\Pipeline\Pipeline(app()))->send($request)->through(array_filter( | ||
config('fortify.pipelines.login') | ||
)); | ||
} | ||
|
||
return (new Pipeline(app()))->send($request)->through(array_filter([ | ||
config('fortify.limiters.login') ? null : EnsureLoginIsNotThrottled::class, | ||
Features::enabled(Features::twoFactorAuthentication()) ? RedirectIfTwoFactorAuthenticatable::class : null, | ||
AttemptToAuthenticate::class, | ||
PrepareAuthenticatedSession::class, | ||
])); | ||
} | ||
|
||
/** | ||
* Destroy an authenticated session. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @return \Laravel\Fortify\Contracts\LogoutResponse | ||
*/ | ||
public function destroy(Request $request): LogoutResponse | ||
{ | ||
$this->guard->logout(); | ||
|
||
$request->session()->invalidate(); | ||
|
||
$request->session()->regenerateToken(); | ||
|
||
return app(LogoutResponse::class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Contracts\Auth\MustVerifyEmail; | ||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Foundation\Auth\User as Authenticatable; | ||
use Illuminate\Notifications\Notifiable; | ||
use Laravel\Fortify\TwoFactorAuthenticatable; | ||
use Laravel\Jetstream\HasProfilePhoto; | ||
use Laravel\Jetstream\HasTeams; | ||
use Laravel\Sanctum\HasApiTokens; | ||
|
||
class Admin extends Authenticatable implements MustVerifyEmail | ||
{ | ||
use HasApiTokens; | ||
use HasFactory; | ||
use HasProfilePhoto; | ||
use HasTeams; | ||
use Notifiable; | ||
use TwoFactorAuthenticatable; | ||
|
||
protected $guard='admin'; | ||
/** | ||
* The attributes that are mass assignable. | ||
* | ||
* @var string[] | ||
*/ | ||
protected $fillable = [ | ||
'name', 'email', 'password', | ||
]; | ||
|
||
/** | ||
* The attributes that should be hidden for serialization. | ||
* | ||
* @var array | ||
*/ | ||
protected $hidden = [ | ||
'password', | ||
'remember_token', | ||
'two_factor_recovery_codes', | ||
'two_factor_secret', | ||
]; | ||
|
||
/** | ||
* The attributes that should be cast. | ||
* | ||
* @var array | ||
*/ | ||
protected $casts = [ | ||
'email_verified_at' => 'datetime', | ||
]; | ||
|
||
/** | ||
* The accessors to append to the model's array form. | ||
* | ||
* @var array | ||
*/ | ||
protected $appends = [ | ||
'profile_photo_url', | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace Database\Factories; | ||
|
||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
use Illuminate\Support\Str; | ||
|
||
/** | ||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Admin> | ||
*/ | ||
class AdminFactory extends Factory | ||
{ | ||
/** | ||
* Define the model's default state. | ||
* | ||
* @return array<string, mixed> | ||
*/ | ||
public function definition() | ||
{ | ||
return [ | ||
'name' => 'admin', | ||
'email' => '[email protected]', | ||
'email_verified_at' => now(), | ||
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password | ||
'remember_token' => Str::random(10), | ||
]; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
database/migrations/2014_10_12_061533_create_admins_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function up() | ||
{ | ||
Schema::create('admins', function (Blueprint $table) { | ||
$table->id(); | ||
$table->string('name'); | ||
$table->string('email')->unique(); | ||
$table->timestamp('email_verified_at')->nullable(); | ||
$table->string('password'); | ||
$table->rememberToken(); | ||
$table->foreignId('current_team_id')->nullable(); | ||
$table->string('profile_photo_path', 2048)->nullable(); | ||
$table->timestamps(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function down() | ||
{ | ||
Schema::dropIfExists('admins'); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@props(['title','description']) | ||
<x-jet-section-title> | ||
<x-slot name="title" class=""><span class="dark:text-gray-300">{{ $title }}</span></x-slot> | ||
<x-slot name="description"><span class="dark:text-gray-400">{{ $description }}</span></x-slot> | ||
</x-jet-section-title> |