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\Filament\Blocks; | |
use Filament\Forms\Get; | |
use Illuminate\Support\Str; | |
use Filament\Support\Markdown; | |
use Illuminate\Support\Collection; | |
use Filament\Forms\Components\Select; | |
use Filament\Forms\Components\Toggle; |
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
VStack { | |
VStack(alignment: .leading) { | |
Text("A Warm Welcome for SwiftUI") | |
.font(.title) | |
.foregroundColor(Color.red) | |
Text("Written by Nathan Gross") | |
.font(.subheadline) | |
.foregroundColor(Color.gray) | |
} | |
} |
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; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Http\Request; | |
use Illuminate\Database\Eloquent\Relations\Relation; | |
Relation::morphMap([ | |
'event' => 'App\Event', |
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
<!-- links to stylesheet and adds version number (filemtime) to force download newer css files --> | |
<link rel="stylesheet" href="<?php echo 'style.css' . '?' . filemtime('style.css'); ?>" /> |
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
// 'use strict'; | |
module.exports = function(grunt) { | |
// load all grunt tasks matching the `grunt-*` pattern | |
require('load-grunt-tasks')(grunt); | |
grunt.initConfig({ | |
// For WordPress projects | |
//theme_location: 'wp-content/themes/themename/', |