Laravel authorization example

Policy là các class quản lý tuyệt vời trong phân quyền tác động đến một Model hoặc tài nguyên nào đó. Ví dụ, nếu chương trình 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 các bạn như là tạo hay cập nhật các nội dung 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 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 example - Khái niệm chi tiết về LA

Tất Vành Cơ (sieutocviet.org)

Có hơn 6 năm thực chiến CSS, JS 6 năm thực chiến trong quản lý website tư vấn giải pháp đẩy top, Digital marketing tối ưu nhất cho tập đoàn quốc tế.
Hiện đang là giám đốc kinh doanh tại Siêu Tốc Việt.