Skip to content

Instantly share code, notes, and snippets.

View devcircus's full-sized avatar
:octocat:
Side gigging.

Clayton Stone devcircus

:octocat:
Side gigging.
View GitHub Profile
@inxilpro
inxilpro / JsString.php
Created September 30, 2021 19:15
Javascript string implementation for Laravel
<?php
namespace App\Support;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Support\Str;
class JsString implements Htmlable
<?php
declare(strict_types=1);
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{