PHPackages                             marshmallow/laravel-nova-linear - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. marshmallow/laravel-nova-linear

AbandonedArchivedLibrary[API Development](/categories/api)

marshmallow/laravel-nova-linear
===============================

This package will let you create issues in Linear via a Nova Resource. It also supports attachments!

v1.4.0(1y ago)21.1k[4 PRs](https://github.com/marshmallow-packages/laravel-nova-linear/pulls)MITPHPPHP ^8.1

Since Nov 3Pushed 1y ago1 watchersCompare

[ Source](https://github.com/marshmallow-packages/laravel-nova-linear)[ Packagist](https://packagist.org/packages/marshmallow/laravel-nova-linear)[ Docs](https://github.com/marshmallow/laravel-nova-linear)[ RSS](/packages/marshmallow-laravel-nova-linear/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (17)Versions (12)Used By (0)

Create Linear issues from Laraval Nova
======================================

[](#create-linear-issues-from-laraval-nova)

This package will let you create issues in Linear via a Nova Resource. It also supports attachments!

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require marshmallow/laravel-nova-linear
```

### Install Linear for Laravel

[](#install-linear-for-laravel)

This package is working with the `Linear for Laravel` package. If you haven't done so already, make sure you follow the installation steps of that package. You can read the docs [here](https://github.com/marshmallow-packages/laravel-linear).

### Install Spatie Media Library

[](#install-spatie-media-library)

This package also uses the Media Library package from Spatie in the background. If you don't use this package in your application yet, you will need to run there migrations aswell. If you already use this package, you can skip this step.

```
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="migrations"
```

### Run the migrations

[](#run-the-migrations)

Next you need to publish the migrations for this package and run them all. You can do so by running the commands below.

```
php artisan vendor:publish --tag="nova-linear-migrations"
php artisan migrate
```

### Create a Nova Resource

[](#create-a-nova-resource)

You will need to create a Nova Resource for creating the issues in Nova. This Nova Resource will extend the Nova Resource in this package so this is a really simple file. This file should be located at `app/Nova/LinearIssue.php`. Paste the content displayed below in this new file.

```
// app/Nova/LinearIssue.php

namespace App\Nova;

use LaravelNovaLinear\Nova\LinearIssue as MarshmallowLinearIssue;

class LinearIssue extends MarshmallowLinearIssue
{
    // Yes, this is everything we need.
}
```

### Add it to your Nova Menu

[](#add-it-to-your-nova-menu)

The only thing that is left is you need to add the resource to your menu. You can do this in many ways but we have added an example below.

```
// app/Providers/NovaServiceProvider.php

public function boot()
{
    parent::boot();

    Nova::mainMenu(function (Request $request) {
        return [
            // ...
            MenuSection::make(__('Issues'))->icon('fire')->path('/resources/linear-issues')
        ];
    });
}
```

### Generate template files

[](#generate-template-files)

If you are working with labels, you have the options to generate template files for every label. This will help you getting complete information for every issue that is created. You can generate these files with the following command.

```
php artisan linear:generate-issue-templates
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Stef van Esch](https://github.com/stefvanesch)
- [Lars Kort](https://github.com/LTKort)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance40

Moderate activity, may be stable

Popularity17

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 62.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~195 days

Total

5

Last Release

504d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/be33d2624e24c516e73892b0929447cc762f3622c024ab8d0d2a59042e5d2c7f?d=identicon)[marshmallow](/maintainers/marshmallow)

---

Top Contributors

[![stefvanesch](https://avatars.githubusercontent.com/u/46725619?v=4)](https://github.com/stefvanesch "stefvanesch (20 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravelmarshmallowlaravel-nova-linear

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/marshmallow-laravel-nova-linear/health.svg)

```
[![Health](https://phpackages.com/badges/marshmallow-laravel-nova-linear/health.svg)](https://phpackages.com/packages/marshmallow-laravel-nova-linear)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.0k7.8M57](/packages/dedoc-scramble)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)[stechstudio/laravel-hubspot

A Laravel SDK for the HubSpot CRM Api

2971.0k](/packages/stechstudio-laravel-hubspot)[marshmallow/laravel-facebook-webhook

A package to retrieve Facebook Leads with webhooks &amp; Graph API in Laravel.

123.2k](/packages/marshmallow-laravel-facebook-webhook)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
