1. Go to this page and download the library: Download pacerit/laravel-core library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pacerit / laravel-core example snippets
class Example extends CoreEntity implements ExampleInterface
{}
class ExampleController extends Controller {
/**
* @var ExampleServiceInterface $exampleService
*/
protected $exampleService;
public function __construct(ExampleServiceInterface $exampleService){
$this->exampleService = $exampleService;
}
....
}
// Return Example entity record with ID 1 as an array.
return $this->exampleService->setModelByID(1)->format()->toArray();
For this example, we assume that Example entity class have setFirstValue() and setSecondValue() functions (setters)
and const. Both of this example, create the same records in database.
// Create based on previously set entity.
$this->exampleService
->setNewModel()
->getModel()
->setFirstValue(1)
->setSecondValue(2);
$this->exampleService->create();
// Create model based on parameters.
$this-exampleService->create(
[
ExampleInterface::FIRST_VALUE => 1,
ExampleInterface::SECOND_VALUE => 2,
]
);
// Update based on previously set entity.
$this->exampleService
->setModelByID(1)
->getModel()
->setFirstValue(2);
$this->exampleService->update();
// Update model based on parameters.
$this-exampleService->update(
1,
[
ExampleInterface::FIRST_VALUE => 2,
]
);
$this->exampleService->setModelByID(1)->delete();
(...)
switch ($type) {
case 'DummyProvider':
$service = new DummyProviderPaymentService::class;
break;
case 'OtherDummyProvider':
$service = new OtherDummyProviderService::class;
break;
default:
// Dunno what to do..
}
$service->create();
(...)