<?php
use Illuminate\Support\Str;
echo Str::title('hello world') . PHP_EOL;
echo Str::camel('hello_world') . PHP_EOL;
echo Str::length('Foo') . PHP_EOL;
echo Str::plural('car') . PHP_EOL;
echo Str::slug('hello world') . PHP_EOL;
echo Str::snake('methodName') . PHP_EOL;
echo Str::studly('hello - world') . PHP_EOL;