marianvlad/nova-env-card

A Laravel Nova card for editing .env file .

Maintainers

Package info

github.com/marianvlad/nova-env-card

Language:Vue

pkg:composer/marianvlad/nova-env-card

Statistics

Installs: 10 867

Dependents: 0

Suggesters: 0

Stars: 7

Open Issues: 2

v1.0.0 2018-08-24 22:04 UTC

This package is not auto-updated.

Last update: 2026-03-02 13:34:22 UTC


README

Latest Version on Packagist Total Downloads

Edit Environment file inside a modal.

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require marianvlad/nova-env-card

Next up, you must register the card Nova. This is typically done in the cards method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

// ...

public function cards()
{
    return [
        // ...
        (new \Marianvlad\NovaEnvCard\NovaEnvCard)->canSee(function ($request) {
        	return $request->user()->role == 'admin';
        })
    ];
}

License

The MIT License (MIT). Please see License File for more information.