Authorization on frontend: #3 Vue Laravel Admin

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ธ.ค. 2024

ความคิดเห็น • 21

  • @naiveneger39
    @naiveneger39 6 หลายเดือนก่อน

    😭😭 You have no idea how happy I am to finally find this video after a number of attempts to expose the permissions to the frontend. God bless you

  • @ninjacodenincode4983
    @ninjacodenincode4983 5 ปีที่แล้ว +2

    Thank you for your video, it really helps me a lot.
    However, I found out that when you enter the URL for a non-admin user (/admin/users for instance), you still can have access....
    I suggest that you should put these two lines inside Kernel.php:
    'role' => \Spatie\Permission\Middlewares\RoleMiddleware::class,
    'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class,
    Also add this line in the web.php, for example, to have a 403 error if the user wants to enter the URL for access to the user's page
    Route::get('/admin/users', 'AdminController@index')->middleware(['auth','role:admin']);
    Be sure that this line is before this
    Route::any('/admin/{any?}', 'AdminController@index')->where('any','.*')->middleware('auth');
    Hope it will help.

  • @khoroshoigra8388
    @khoroshoigra8388 5 ปีที่แล้ว +1

    can you apply with vue router guard

  • @KushanShanuka
    @KushanShanuka 5 ปีที่แล้ว +1

    How to add permission for api routes/Models. appreciate your explain with video.. thank you

  • @jocluis100
    @jocluis100 5 ปีที่แล้ว

    hello!, excuse me, how can I make login/register in this project using vuetify ? TxU.

  • @luizmagao
    @luizmagao 4 ปีที่แล้ว

    E se eu quisesse fazer um can, como seria?

  • @ngoccantech820
    @ngoccantech820 2 ปีที่แล้ว

    ありがとうございました!

  • @kevinwakhisi7001
    @kevinwakhisi7001 3 ปีที่แล้ว

    how would set default user role upon registering?

    • @WebDevMatics
      @WebDevMatics  3 ปีที่แล้ว

      create listener for userRegistered event that laravel fires

    • @kevinwakhisi7001
      @kevinwakhisi7001 3 ปีที่แล้ว

      @@WebDevMatics And how can i use the exposed permissions and roles in my vue router ?

  • @hongdungnguyen634
    @hongdungnguyen634 4 ปีที่แล้ว

    Thank you! This video save my life!!!

    • @WebDevMatics
      @WebDevMatics  4 ปีที่แล้ว

      Glad it helped!

    • @naiveneger39
      @naiveneger39 6 หลายเดือนก่อน

      ​@@WebDevMatics if using API authentication how can I get the user?

  • @islamawaad5043
    @islamawaad5043 4 ปีที่แล้ว

    thank you man appreciate apperciate your work

  • @adam192021
    @adam192021 5 ปีที่แล้ว

    The BEST as always!

  • @assoftTR
    @assoftTR 5 ปีที่แล้ว

    Please add a course that includes the module @nuxtjs/auth (Fully authentication) (login, register, middleware, guard, activation)

    • @WebDevMatics
      @WebDevMatics  5 ปีที่แล้ว

      I will check that out. Thanks for the suggestion.

    • @godsonmandla6658
      @godsonmandla6658 4 ปีที่แล้ว

      on NuxtJs its much easier to use Token verification than using laravel authentication

  • @KushanShanuka
    @KushanShanuka 5 ปีที่แล้ว

    add more videos with more features

  • @youssefflamme4318
    @youssefflamme4318 5 ปีที่แล้ว

    thanks