File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
src/app/Library/CrudPanel Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 99 * by providing a Facade that leads to the CrudPanel object. That object is stored in Laravel's
1010 * service container as 'crud'.
1111 */
12+ /**
13+ * Class CrudPanelFacade
14+ *
15+ * @method static setModel($model)
16+ * @method static setRoute(string $route)
17+ * @method static setEntityNameStrings(string $singular, string $plural)
18+ * @method static field(string $name)
19+ * @method static addField(array $field)
20+ * @method static addFields(array $fields)
21+ * @method static column(string $name)
22+ * @method static addColumn(array $column)
23+ * @method static addColumns(array $columns)
24+ * @method static afterColumn(string $targetColumn)
25+ * @method static setValidation($class)
26+ * @mixin CrudPanel
27+ */
1228class CrudPanelFacade extends Facade
1329{
1430 /**
You can’t perform that action at this time.
0 commit comments