for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Helper Functions for Lagaren
* Autoloads via LaragenServiceProvider
*/
if (!function_exists('getFileExtention')) {
function getFileExtention($column)
{
$extension = pathinfo($column, PATHINFO_EXTENSION).'.png';
return $extension;
}