PHP code example of ahmed-aliraqi / crud-generator
1. Go to this page and download the library: Download ahmed-aliraqi/crud-generator 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/ */
ahmed-aliraqi / crud-generator example snippets
/* The routes of generated crud will set here: Don't remove this line */
/**
* The code of merchant type.
*
* @var string
*/
const MERCHANT_TYPE = 'merchant';
/**
* Set the currently logged in merchant for the application.
*
* @param null $driver
* @return \App\Models\Merchant
*/
public function actingAsMerchant($driver = null)
{
$merchant = Merchant::factory()->create();
$this->be($merchant, $driver);
return $merchant;
}