1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<?php
use function Laravel\Prompts\suggest;
require __DIR__.'/../vendor/autoload.php';
$model = suggest(
label: 'What model should the policy apply to?',
placeholder: 'E.g. User',
options: [
'Article',
'Destination',
'Flight',
'Membership',
'Role',
'Team',
'TeamInvitation',
'User',
],
validate: fn ($value) => match (true) {
strlen($value) === 0 => 'Please enter a model name.',
default => null,
},
hint: 'The model name should be singular.',
);
var_dump($model);
echo str_repeat(PHP_EOL, 6);
|