Added My apps page, it show Purchase and installed app
This commit is contained in:
		
							
								
								
									
										48
									
								
								app/Listeners/Updates/Version126.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								app/Listeners/Updates/Version126.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,48 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Listeners\Updates;
 | 
			
		||||
 | 
			
		||||
use App\Events\UpdateFinished;
 | 
			
		||||
use App\Models\Auth\Role;
 | 
			
		||||
use App\Models\Auth\Permission;
 | 
			
		||||
 | 
			
		||||
class Version126 extends Listener
 | 
			
		||||
{
 | 
			
		||||
    const ALIAS = 'core';
 | 
			
		||||
 | 
			
		||||
    const VERSION = '1.2.6';
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Handle the event.
 | 
			
		||||
     *
 | 
			
		||||
     * @param  $event
 | 
			
		||||
     * @return void
 | 
			
		||||
     */
 | 
			
		||||
    public function handle(UpdateFinished $event)
 | 
			
		||||
    {
 | 
			
		||||
        // Check if should listen
 | 
			
		||||
        if (!$this->check($event)) {
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // Create permission
 | 
			
		||||
        $permission = Permission::firstOrCreate([
 | 
			
		||||
            'name' => 'read-modules-my',
 | 
			
		||||
            'display_name' => 'Read Modules My',
 | 
			
		||||
            'description' => 'Read Modules My',
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        // Attach permission to roles
 | 
			
		||||
        $roles = Role::all();
 | 
			
		||||
 | 
			
		||||
        foreach ($roles as $role) {
 | 
			
		||||
            $allowed = ['admin', 'manager'];
 | 
			
		||||
 | 
			
		||||
            if (!in_array($role->name, $allowed)) {
 | 
			
		||||
                continue;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            $role->attachPermission($permission);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user