File: suggest.php

package info (click to toggle)
php-laravel-prompts 0.1.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: php: 5,928; xml: 14; makefile: 8
file content (29 lines) | stat: -rw-r--r-- 607 bytes parent folder | download
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);