Skip to content

Instantly share code, notes, and snippets.

View MukurowZ's full-sized avatar
:octocat:
In relationship with work

Parin Sasiwannakul MukurowZ

:octocat:
In relationship with work
  • Bangkok, Thailand
View GitHub Profile
@MukurowZ
MukurowZ / th-address.json
Created November 24, 2023 10:11 — forked from mennwebs/th-address.json
Thai Address from Postal Code - JSON
This file has been truncated, but you can view the full file.
[
{
"zipCode": "10100",
"subDistrictList": [
{
"subDistrictId": "100801",
"districtId": "1008",
"provinceId": "10",
"subDistrictName": "ป้อมปราบ"
@MukurowZ
MukurowZ / Kernel.php
Last active January 16, 2022 07:34
Guide for setup Laravel JWT-Auth, To install -- https://jwt-auth.readthedocs.io/en/develop/laravel-installation/
<?php
// This file we use to register our JwtMiddleware
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{