This file contains hidden or 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\Livewire\Modeler; | |
use App\Models\AcModel; | |
use Livewire\Component; | |
class ResetManifest extends Component | |
{ | |
public AcModel $ac_model; |
This file contains hidden or 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
@push('pagetitle', 'Manifest Modeler') | |
<div> | |
<div class="relative p-4"> | |
<x-page.header title="Manifest Modeler"> | |
<div> | |
<a href="/modeler/creator"> | |
<x-buttons.header-button | |
btnSize="inline" | |
type="button"> |
This file contains hidden or 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\Livewire\Modeler; | |
use App\Http\Livewire\DataTable\WithSorting; | |
use App\Models\AcModel; | |
use App\Models\Aircraft; | |
use App\Models\CorporateDelegate; | |
use App\Models\PartsModeled; | |
use App\Models\User; |
This file contains hidden or 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\Console\Commands; | |
use App\Models\AcModel; | |
use App\Models\Part; | |
use App\Models\PartMaster; | |
use App\Models\PartsModeled; | |
use App\Models\User; | |
use App\Notifications\OccmImportCompleted; |
This file contains hidden or 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
<div> | |
<canvas id="myChart" width="750" height="500"></canvas> | |
</div> | |
@push('scripts') | |
<script> | |
let ctx = document.getElementById('myChart').getContext('2d'); | |
let myChart = new Chart(ctx, { |
This file contains hidden or 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
window._ = require('lodash'); | |
window.axios = require('axios'); | |
import MomentBusinessDays from 'moment-business-days'; | |
import MomentTimeZone from 'moment-timezone'; | |
window.alpine = require('alpinejs'); | |
window.moment = MomentBusinessDays; |
This file contains hidden or 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 "wenk.scss"; | |
@import "pikaday.css"; | |
@import "trix.css"; | |
@import 'tailwindcss/base'; | |
@import 'tailwindcss/components'; | |
@import "tables.scss"; | |
@import 'tailwindcss/utilities'; |
This file contains hidden or 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
const defaultTheme = require('tailwindcss/defaultTheme'); | |
module.exports = { | |
future: { | |
removeDeprecatedGapUtilities: true, | |
purgeLayersByDefault: true, | |
}, | |
purge: ['./storage/framework/views/*.php', './resources/views/**/*.blade.php'], |
This file contains hidden or 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\Models; | |
use Carbon\Carbon; | |
use Illuminate\Contracts\Auth\MustVerifyEmail; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Illuminate\Database\Eloquent\SoftDeletes; | |
use Illuminate\Foundation\Auth\User as Authenticatable; | |
use Illuminate\Notifications\Notifiable; |
This file contains hidden or 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
<div class="p-4"> | |
<x-page.header | |
icon="{{$module->icon}}" | |
title="{{$module->title}}"> | |
<div> | |
<a href="/tech/flight_deck"> | |
<x-buttons.header-button | |
btnSize="inline" | |
btnColor="blue" |