Support Opscale
At Opscale, we’re committed to delivering top-notch open-source solutions that empower your business to scale efficiently. If you’ve found our tools helpful, here are a few ways you can show your support:
⭐ Star this repository to help others discover our work and be part of our growing community. Every star makes a difference!
💬 Share your experience by leaving a review on Trustpilot or sharing your thoughts on social media. Your feedback helps us improve and grow!
📧 Send us feedback on what we can improve at development@opscale.co. We value your input to make our tools even better for everyone.
🙏 Get involved by actively contributing to our open-source repositories. Your participation benefits the entire community and helps push the boundaries of what’s possible.
Thanks for helping Opscale continue to grow! 🚀
This repo can be used to scaffold a Laravel package. Follow these steps to get started:
-
Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
-
Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
-
Check the GitHub Actions workflows you want to keep
-
Keep in mind the template is configured with Duster and Commitlint
-
Have fun creating your package
-
If you need a deeper how-to, consider checking our Loom videos.
To use your customized package in a Nova app, add this line in the require
section of the composer.json
file:
":vendor/:package_name": "*",
In the same composer.json
file add a repositiories
section with the path to your package repo:
"repositories": [
{
"type": "path",
"url": "../:package_name"
},
Now you're ready to develop your package inside a Nova app.
When you are done with the steps above delete everything above!
:package_description
Add a screenshot of the tool here.
You can install the package in to a Laravel app that uses Nova via composer:
composer require :vendor/:package_name
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php
// ...
public function tools()
{
return [
// ...
new \:namespace_vendor\:namespace_tool_name\:namespace_tool_nameTool(),
];
}
Click on the ":package_name" menu item in your Nova app to see the tool provided by this package.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email :author_email instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.