The core foundation of Rinvex Cortex modular application architecture.
This package should NOT be installed individually, it's required by rinvex/cortex
and requires a new laravel application instance with special architecture satisfied with Rinvex Cortex.
This package still not yet documented, but you can use it on your own responsibility.
To be documented soon..!
Rinvex Cortex supports Livewire, to add an example Livewire Component, do the following:
Create a new component class app/cortex/foundation/src/Http/Components/Adminarea/Counter.php
:
<?php
namespace Cortex\Foundation\Http\Components\Adminarea;
use Cortex\Foundation\Overrides\Livewire\Component;
class Counter extends Component
{
public $count = 0;
public function increment()
{
$this->count++;
}
public function render()
{
//$this->authorize('update', $this->post);
return view('cortex/foundation::adminarea.components.counter');
}
}
Create a new component view app/cortex/foundation/src/Http/Components/Adminarea/Counter.php
:
<div style="text-align: center">
<button wire:click="increment">+</button>
<h1>{{ $count }}</h1>
</div>
Use the new component anywhere in your blade templates:
<livewire:adminarea.cortex.foundation.counter />
Refer to the Changelog for a full history of the project.
The following support channels are available at your fingertips:
Thank you for considering contributing to this project! The contribution guide can be found in CONTRIBUTING.md.
Bug reports, feature requests, and pull requests are very welcome.
If you discover a security vulnerability within this project, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.
Rinvex is a software solutions startup, specialized in integrated enterprise solutions for SMEs established in Alexandria, Egypt since June 2016. We believe that our drive The Value, The Reach, and The Impact is what differentiates us and unleash the endless possibilities of our philosophy through the power of software. We like to call it Innovation At The Speed Of Life. That’s how we do our share of advancing humanity.
This software is released under The MIT License (MIT).
(c) 2016-2022 Rinvex LLC, Some rights reserved.