achalj09 / editresource
Edit Resource Button
Installs: 14 066
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: >=7.1.0
This package is not auto-updated.
Last update: 2024-11-21 10:22:46 UTC
README
In Laravel Nova, when you use Custom Tool for creating/editing/updating Custom Page,
you might need "Edit Resource Button" with edit SVG icon as custom link field.
Install using
composer require achalj09/editresource
Use in resources
use Achalj09\Editresource\Editresource; Editresource::make('Edit','edit') ->details([ 'href' => function () { return "../../createjobs/{$this->id}/edit"; }, 'text' => function () { return 'edit'; }, ])->onlyOnIndex() ->canSee(function ($request) { return $request->user()->can('Update Jobs', $this); }),