Laravel str title() function Example

10-Apr-2023

.

Admin

Hi Guys,

In this blog,I will you how to use laravel str title() function example. We will show example of title function in laravel.The Str::title method converts the given string to Title Case.

Here, I will give you full example for simply str title() method in laravel as bellow.

Example


<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Http\Controllers\FileController;

use Illuminate\Support\Str;

class HomeController extends Controller

{

/**

* Show the application dashboard.

*

* @return \Illuminate\Contracts\Support\Renderable

*/

public function index()

{

$converted1 = Str::title('a nice title uses the correct case');

\Log::info($converted1);

// output - A Nice Title Uses The Correct Case

$converted2 = Str::title('laravel str title() function example');

\Log::info($converted2);

// output - Laravel Str Title() Function Example

}

}

Output

"A Nice Title Uses The Correct Case"

"Laravel Str Title() Function Example"

It Will help you...

#Laravel 8

#Laravel 7

#Laravel

#Laravel 6