From 602c74ea9c8f4a200927ee69ba493166a70a0967 Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Sat, 24 Feb 2024 23:45:33 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f757f0e..21e3070 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Using Laravel installer ```bash -laravel new jetpass-app --stack=livewire --jet --dark --api --dev +laravel new jetpass-app --stack=livewire --jet --dark --api --pest --dev ``` Using Composer From ca387b7a504e5a7df0ec821b64108db10e561b68 Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Sat, 24 Feb 2024 23:47:37 -0500 Subject: [PATCH 2/3] Update .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a7f372d..ea1aea1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ docs phpunit.xml phpstan.neon testbench.yaml -vendor +/vendor node_modules From 0846885ed96a8a152bdbaad56bbb49ac37fbf873 Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Sat, 24 Feb 2024 23:49:08 -0500 Subject: [PATCH 3/3] Create authorize.blade.php --- .../views/vendor/passport/authorize.blade.php | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 stubs/resources/views/vendor/passport/authorize.blade.php diff --git a/stubs/resources/views/vendor/passport/authorize.blade.php b/stubs/resources/views/vendor/passport/authorize.blade.php new file mode 100644 index 0000000..390cfdb --- /dev/null +++ b/stubs/resources/views/vendor/passport/authorize.blade.php @@ -0,0 +1,65 @@ + + +
+ Authorization Request +
+ + + + + + + + +
+

{{ $client->name }} is requesting permission to access your account.

+
+ + + @if (count($scopes) > 0) +
+

This application will be able to:

+ +
    + @foreach ($scopes as $scope) +
  • {{ $scope->description }}
  • + @endforeach +
+
+ @endif + + +
+ +
+ @csrf + @method('DELETE') + + + + + +
+ + {{ __('Cancel') }} + +
+
+ +
+ @csrf + + + + +
+ + {{ __('Authorize') }} + +
+
+ +
+ +
+