PHP code example of arkitecht / laravel-nullable
1. Go to this page and download the library: Download arkitecht/laravel-nullable 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/ */
arkitecht / laravel-nullable example snippets
namespace App;
use Arkitecht\Nullable\Traits\Nullable;
use Illuminate\Database\Eloquent\Model;
class Test extends Model
{
use Nullable;
protected $nullable = ['null_column_one','null_column_two'...];
}