관리-도구
편집 파일: Formatter.php
<?php namespace Yajra\DataTables\Contracts; interface Formatter { /** * @param string $value * @param mixed $row * @return string */ public function format($value, $row); }