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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>Home</title> |
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
@extends('frontend.index') | |
@section('content') | |
<h1>hi</h1> | |
@stop |
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
<!-- Header Block | |
============================================== --> | |
<header class="header-block line-top"> | |
<!-- Main Header | |
............................................ --> | |
<div class="main-header container"> | |
<!-- Header Cols --> | |
<div class="header-cols"> |
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\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class ComposerServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Register bindings in the container. |
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\ViewComposers; | |
use Illuminate\View\View; | |
use App\Models\Store\Cart as Cart; | |
use Auth; | |
use App\Categories as Categories; | |
class HeaderComposer |
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\ViewComposers; | |
use Illuminate\View\View; | |
use App\Models\Store\Cart as Cart; | |
use Auth; | |
use App\Categories as Categories; | |
use App\Models\Store\Products as Products; |
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\Providers; | |
use Illuminate\Routing\Router; | |
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
class MyCounter { | |
public $counter = 0; | |
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
<!-- Footer | |
=================================================== --> | |
<footer class="footer-block"> | |
<!-- Bottom --> | |
<div class="footer-bottom invert-colors bcolor-bg"> | |
<!-- Container --> | |
<div class="container"> | |
<span class="copy-text">© 2016 Jacqueline Bell Jewellery. {{ $Counter->inc() }}</span> | |
<!-- hlinks --> | |
<ul class="hlinks pull-right"> |
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
/* | |
* Testament Shopify theme | |
* Copyright 2015, Underground Media | |
* www.shopifythemes.net | |
* | |
* Gridlock v3.2.1 - 2014-10-28 | |
* A responsive CSS grid system. Part of the Formstone Library. | |
* http://formstone.it/gridlock/ | |
* | |
* Copyright 2014 Ben Plum; MIT Licensed |