Premium Component
This is a premium Content. Upgrade to access the content and more premium features.
Upgrade to PremiumDeveloperBreeze
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
This is a premium Content. Upgrade to access the content and more premium features.
Upgrade to PremiumMore content you might like
Use the {{ }} syntax in Blade templates to automatically escape user input:
<p>{{ $user->name }}</p>Test paginated responses:
use Illuminate\Support\Facades\Cache;
if (!function_exists('getSetting')) {
function getSetting($key, $default = null)
{
return Cache::rememberForever("site_setting_{$key}", function () use ($key, $default) {
$setting = \App\Models\SiteSetting::where('key', $key)->first();
return $setting ? $setting->value : $default;
});
}
}Add it to composer.json:
View::share.Please sign in to join the discussion.
No comments yet. Be the first to share your thoughts!