Skip to content

Instantly share code, notes, and snippets.

View jongravois's full-sized avatar

Jonathan Gravois jongravois

View GitHub Profile
<?php
namespace App\Http\Livewire\Tasks;
use App\Models\UserTask;
use App\Models\UserTaskGroup;
use Livewire\Component;
class TaskBar extends Component
{
<div class="p-4">
<x-page-header title="Inventory Portal"></x-page-header>
<div class="py-2 flex border-t-2 border-b-2 border-silver-400">
<div class="w-1/2 rounded-lg px-2 border border-silver-200">
<h2 class="mb-8 text-silver-800 text-2xl">
Available Inventory By WHSE Report
</h2>
<div>
<?php
namespace App\Http\Livewire\Operations;
use App\Models\Warehouse;
use Livewire\Component;
class InventorySearch extends Component
{
public $search = '';
<div class="p-4">
<div class="mt-8 flex ">
<div class="container mx-auto">
<div class="flex px-10">
<div class="w-1/4 rounded-lg p-4 border border-silver-400">
<div class="text-center mb-4">
<img class="rounded-lg"
src="{{$user->avatar_path}}">
</div>
<?php
namespace App\Http\Livewire\Profile;
use App\Models\Office;
use App\User;
use Livewire\Component;
class UsersProfile extends Component
{
module.exports = {
prefix: '',
important: false,
separator: ':',
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
<div class="h-10 flex flex-col items-center my-2 rounded-lg border-2 bg-charcoal">
<h2 class="perfect-center text-gold text-2xl">
The Tower
</h2>
</div>
<template>
<div class="h-30 flex flex-col items-center my-2 rounded-lg bg-charcoal">
<img src="/images/UAM_TAIL.svg"
alt="UAM Logo"
style="width: auto; height: 120px;">
<section class="mt-3">
<p class="text-2xl text-silver-500">{{ date }}</p>
<p class="text-4xl text-gold">{{ time }}</p>
</section>
@jongravois
jongravois / README.md
Last active January 9, 2022 04:55
Readme Starter for UAM-IT

UAM-IT

UAM-IT is a small team of custom developers supporting the mission of Universal Asset Management (UAM). Our primary goal is to turn data into actionable information for the customers and staff of UAM.

To accomplish our goal, UAM-IT provides custom web applications such as:

@tailwind base;
@tailwind components;
@import "charts";
@import "helpers";
@import "buttons";
@import "tables";
@import "tabs";
@import "forms";