Skip to content

Instantly share code, notes, and snippets.

View MACscr's full-sized avatar

Mark Chaney MACscr

View GitHub Profile
@MACscr
MACscr / .gitignore
Created January 7, 2022 22:00 — forked from salcode/.gitignore
.gitignore file for a general web project - Bare Minimum Git
# -----------------------------------------------------------------
# .gitignore
# Bare Minimum Git
# https://salferrarello.com/starter-gitignore-file/
# ver 20210211
#
# From the root of your project run
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore
# to download this file
#
@MACscr
MACscr / Tagify.php
Created May 24, 2021 22:03 — forked from localdisk/Tagify.php
Livewire Tagify Component
<?php
namespace App\Http\Livewire;
use App\Models\Tag;
use Illuminate\View\View;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\Container\BindingResolutionException;
use Livewire\Component;