Download the PHP package envor/platform without Composer
On this page you can find all versions of the php package envor/platform. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download envor/platform
More information about envor/platform
Files in envor/platform
Package platform
Short Description This is my package platform
License MIT
Homepage https://github.com/envor/platform
Informations about the package platform
Platform
Configure your platform
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file(s):
Usage
Using the platform connection
Add the trait Envor\Platform\UsesPlatformConnection
to your model:
Using Platform UUID's
Add the uuid
column to your model's table in a migration:
Add the trait Envor\Platform\UsesPlatformUuids
to your model:
Logos
Allows a model to have a logo, which can be updoaded, deleted and replaced by the user.
-
Add
profile_photo_path
(string) field to your model's database table - Add
\Envor\Platform\HasProfilePhoto
trait to your model.
It can be any model but we will use the user model as an example.
Usage example
- Use the form (optional)
[!NOTE]
Requires livewire/volt and tailwind.
Now you can add the form to any view:
Screenshot:
Landing Pages
Allows a model to have an html "landing page", which can be uploaded, deleted and replaced by the user.
- publish and run migration
This will create a landing_pages
table where landing page paths and relationship info will be stored.
- Add
\Envor\Platform\HasLandingPage
trait to your model.
It can be any model but we will use the user model as an example:
Usage example
- Use the form (optional)
[!NOTE]
Requires livewire/volt and tailwind.
Now you can add the form to any view:
Screenshot:
- Make The landing page the home page (optional)
In this example we will illustrate how it might be done for a user which has a domain
property.
Add domain field to users table in a migration:
Then show the page on the home '/' route:
Contact Info
Allows a model to have address and other contact details
-
Add contact data text (or json) field to your model's database table
- Add
\Envor\Platform\HasContactData
trait to your model.
It can be any model but we will use the user model as an example:
Usage example
- Use form (optional)
[!NOTE]
Requires livewire/volt and tailwind.
Now you can add the form to any view:
Screenshot:
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- inmanturbo
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of platform with dependencies
illuminate/contracts Version ^11.0
spatie/laravel-data Version ^4.1
spatie/laravel-package-tools Version ^1.16.2