Answers for "What are helpers in laravel"

PHP
-2

laravel helper

use Illuminate\Support\Str;

$length = Str::length('Laravel');

// 7
Posted by: Guest on January-24-2021
0

how to share a helper globally laravel

<?php
function getDomesticCities()
{
$result = \App\Package::where('type', '=', 'domestic')
    ->groupBy('from_city')
    ->get(['from_city']);

return $result;
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language