Laravel authorization example

Policy là các class quản lý tuyệt vời trong phân quyền ảnh hưởng đến một Model hoặc tài nguyên nào đó. Ví dụ, nếu phần mềm của bạn là một blog, bạn có lẽ có một model Post và một policy là postpolicy để phân quyền các hành động người dùng như là tạo hay cập nhật các bài viết. Một policy muốn dùng cần được đăng ký, AuthServiceProvider được đưa vào trong project Laravel chứa một thuộc tính policies để map Eloquent model với các policy tương ứng với Laravel authorization example.

<?php

namespace AppProviders;

use AppPost;
use AppPoliciesPostPolicy;
use IlluminateSupportFacadesGate;
use IlluminateFoundationSupportProvidersAuthServiceProvider as ServiceProvider;

class AuthServiceProvider extends ServiceProvider

    /**
     * The policy mappings for the application.
     *
     * @var array
     */
    protected $policies = [
        Post::class => PostPolicy::class,
    ];

    /**
     * Register any application authentication / authorization services.
     *
     * @return void
     */
    public function boot()
    
        $this->registerPolicies();

        //
    
Laravel authorization example

5/5 - (1 bình chọn)

Laravel authorization ví dụ - Giải thích chi tiết về LA

Lê Trương Tấn Lộc (sieutocviet.net)

Với hơn 6 năm thực chiến CSS, JS 7 năm thực chiến trong quản trị web site tư vấn giải pháp Seo top, Digital marketing tối ưu nhất cho doanh nghiệp.
Hiện giữ chức vụ quản lý kinh doanh tại Siêu Tốc Việt.