This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Rules\DayOfTheWeek; | |
use Carbon\Carbon; | |
use Illuminate\Http\Request; | |
use Illuminate\Http\Response; | |
class DoSomethingController extends Controller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/ci.yml | |
name: CI | |
on: push | |
env: | |
node-modules-cache-name: cache-node-modules-5 | |
composer-packages-cache-name: cache-composer-packages-5 | |
build-artifacts-cache-name: cache-build-artifacts-5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// resources/js/app.js | |
import './bootstrap'; | |
import {ThemeSwitcher} from './theme-switcher'; | |
ThemeSwitcher.init() |