Alexey Rogachev

Results 122 comments of Alexey Rogachev

Cycle implementation just for comparison: ```php $schema = $table->getSchema(); $schema->string('parent', 128)->nullable(false); $schema->string('child', 128)->nullable(false); $schema->setPrimaryKeys(['parent', 'child']); $schema->save(); ```

Example can be found in Google Docs (link is in README).

Не совсем понял вопрос.

Thanks. Please remove the comment above `array_replace_recursive` and cancel the modification of `composer.json`.

And linebreak after class definition.

I handled it with helper method: ``` php use DateTime; use PHPExcel_Shared_Date; /** * @param $excelDateTime * @return string */ protected static function convertDateTime($excelDateTime) { $dateTime = (new DateTime)->setTimestamp(PHPExcel_Shared_Date::ExcelToPHP($excelDateTime)); return...

But yes, it will be better if an extension provides better abstracton for that. Will think how to add this feature.

There are certain conditions in order to `SortableColumn` to be visible: - If `access` closure is specified, it should return `true` meaning current user have permissions to sort. - If...

Also you should rename `` according to your model meaning, it's just an example. For example `post-index` and `post-sortable`.

I'll consider adding an option to always show `SortableColumn` (except case when permissions check was failed).