PHP code example of russsiq / laravel-assistant

1. Go to this page and download the library: Download russsiq/laravel-assistant library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

russsiq / laravel-assistant example snippets


'providers' => [
    /*
     * Package Service Providers...
     */
    Russsiq\Assistant\AssistantServiceProvider::class,
],

'aliases' => [
    'Archivist' => Russsiq\Assistant\Facades\Archivist::class,
    'Cleaner' => Russsiq\Assistant\Facades\Cleaner::class,
    'Installer' => Russsiq\Assistant\Facades\Installer::class,
    'Updater' => Russsiq\Assistant\Facades\Updater::class,
],

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

    //

    // Определить посредника, проверяющего,
    // что текущий пользователь имеет право
    // воспользоваться Ассистентом приложения.
    Gate::define('use-assistant', function ($user) {
        return in_array($user->email, [
            '[email protected]',
        ]);
    });
}

// Режим отладки приложения.
'APP_DEBUG' => [
    '    'oduction',
    ]),
],

// Название сайта.
'APP_NAME' => [
    'цензионного соглашения.
'licence' => 'accepted',

// Меняем название темы сайта для
// последующей записи в файл окружения.
$request->merge([
    'APP_THEME' => $theme,
]);

// Копирование директорий: fromDir, toDir.
'directories' => [
    // 'fromDir' => 'toDir',
],

// Создание ссылок на директории: target => link.
'symlinks' => [
    storage_path('app/public') => public_path('storage'),
],
console
php artisan vendor:publish --provider="Russsiq\Assistant\AssistantServiceProvider"
console
php artisan vendor:publish --tag=assistant-lang --force
console
php artisan vendor:publish --tag=assistant-views --force
html
<input type="text" name="SOME_VAR" value="{{ old('SOME_VAR', 'default') }}" />

<select name="OTHER_VAR">
    <!-- остальная разметка -->
</select>
console
php artisan make:before_installed BeforeInstalled --force