karim-qaderi/zoroaster-backup-tool

There is no license information available for the latest version (v1.0) of this package.

A Zoroaster tool to backup your application.

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/karim-qaderi/zoroaster-backup-tool

v1.0 2019-02-23 08:01 UTC

This package is auto-updated.

Last update: 2025-09-24 06:49:22 UTC


README

نصب

composer require karim-qaderi/zoroaster-backup-tool

سطح دسترسی

برای اینکه سطح دسترسی رو بزارید فایل app/Providers/ZoroasterServiceProvider.php رو باز کنید کد زیر رو در boot قرار دهید.

/**
 * Bootstrap any application services.
 *
 * @return void
 */
protected function boot()
{
    Gate::define('Zoroaster-backup-tool', function ($user) {
        return in_array($user->email, [
            'karimqaderi1@gmail.com',
        ]);
    });
}