File Manager

Path: /home/liffinac1/domains/bank.stellerpay.ca/public_html/vendor/laravel/jetstream/src/

Viewing File: OwnerRole.php

<?php

namespace Laravel\Jetstream;

class OwnerRole extends Role
{
    /**
     * Create a new role instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct('owner', 'Owner', ['*']);
    }
}