Created
July 10, 2020 07:29
-
-
Save vineeth030/a26a6faaf2ac89fbbd5fd733e4e6f1f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public function fields(Request $request) | |
{ | |
return [ | |
ID::make()->sortable(), | |
Text::make('Name'), | |
Text::make('Description'), | |
Tags::make('tags') | |
// I need an author_id field here. | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment