Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to share a helper globally laravel

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

return $result;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #share #helper #globally #laravel
ADD COMMENT
Topic
Name
6+4 =