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 Tests; | |
use Illuminate\Database\Eloquent\Factories\Factory; | |
use Illuminate\Foundation\Testing\TestCase as BaseTestCase; | |
use Illuminate\Support\Facades\File; | |
use Illuminate\Support\Str; | |
use ReflectionClass; | |
use SplFileInfo; |
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 {{ factoryNamespace }}; | |
use Illuminate\Database\Eloquent\Factories\Factory; | |
use {{ namespacedModel }}; | |
/** | |
* @method {{ model }}|\Illuminate\Support\Collection<{{ model }}> create($attributes = [], ?Model $parent = null) | |
* @method \Illuminate\Support\Collection<{{ model }}> createMany(iterable $records) |
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 {{ namespace }}; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Illuminate\Database\Eloquent\Model; | |
/** | |
* @method static \Database\Factories\{{ class }}Factory factory(...$params) | |
*/ |
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
// the plugin requires a `minimatch` dependency installed | |
// npm i -D minimatch | |
import { PluginOption } from "vite" | |
import { exec } from "child_process" | |
import minimatch from "minimatch" | |
import path from "path" | |
import chalk from "chalk" | |
export default function watch(config: { |
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
# Git | |
alias wip="git add .; git commit -m 'wip'" | |
alias push="git push" | |
# PHP | |
alias c="composer" | |
alias pest='./vendor/bin/pest' | |
alias pint='./vendor/bin/pint' | |
alias stan='./vendor/bin/phpstan' |
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
import { createApp, h, DefineComponent } from "vue" | |
import { createInertiaApp, router } from "@inertiajs/vue3" | |
import { resolvePageComponent } from "laravel-vite-plugin/inertia-helpers" | |
if (import.meta.hot) { | |
import.meta.hot.on("inertia:reload", () => { | |
router.reload() | |
}) | |
} |