Skip to content

Instantly share code, notes, and snippets.

View t301000's full-sized avatar

林士立 t301000

  • 育林國中
  • New Taipei City
View GitHub Profile
@adrianmejias
adrianmejias / CaddyController.php
Last active January 11, 2023 07:49
How to Enable SSL for Local Laravel Sail Development using Caddy and Docker
# file: app/Http/Controllers/CaddyController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class CaddyController extends Controller
{
/**
@doggy8088
doggy8088 / Angular 18 Dev Setup.md
Last active July 9, 2024 07:17
Angular 18 開發環境說明

Angular 18 開發環境說明

為了能讓大家能夠順利的建立起 Angular 18 開發環境,以下是需要安裝的相關軟體與安裝步驟與說明。

Angular LOGO

[ 作業系統 ]

  • Windows 10 以上版本
  • Mac OS X 10.6 以上版本
@JeffreyWay
JeffreyWay / PjaxMiddleware.php
Last active February 24, 2024 13:40
Laravel middleware for working with pjax.
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Symfony\Component\DomCrawler\Crawler;
class PjaxMiddleware