achalj09 / editresource
Edit Resource Button
0.0.1
2019-01-22 07:15 UTC
Requires
- php: >=7.1.0
This package is not auto-updated.
Last update: 2026-02-26 16:23:31 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); }),
