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
@extends('layouts.app') | |
@section('content') | |
<div class="mb-2"><a class="btn btn-sm btn-outline-dark" href="{{ url('/') }}"><span aria-hidden="true" class="pr-2"><</span>back</a></div> | |
<h2>Guides</h2> | |
<div id="guides"> | |
<div class="card mb-4" v-for="(value, key) in content[0].guides" v-cloak :id="'guide_' + key"> | |
<p class="card-header" :id="'guide_' + key + '_header'">@{{ value.title }}</p> | |
<div class="card-body" :id="'guide_' + key + '_body'"> | |
<p v-for="page in value.pages" v-cloak>@{{ page }}</p> |
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
/* | |
Theme Name: MikeRitterResponsive | |
Theme URI: http://underscores.me/ | |
Author: mikeritteronline | |
Author URI: http://mikeritteronlins.com | |
Description: customizable responsive website | |
Version: 1.0-wpcom | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
Text Domain: mikeritterresponsive |
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 issue at hand is how to show checked boxes in | |
* a Laravel edit form using Eloquent models. | |
*/ | |
/* | |
* My Models | |
* | |
*/ |