forked from Kyon147/laravel-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.blade.php
28 lines (23 loc) · 899 Bytes
/
index.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@extends('shopify-app::layouts.default')
@section('styles')
@include('shopify-app::partials.laravel_skeleton_css')
@endsection
@section('content')
<ui-title-bar title="Welcome"></ui-title-bar>
<div class="flex-center position-ref full-height">
<div class="content">
<div class="title m-b-md">
Laravel & Shopify
</div>
<p>Welcome to your Shopify App powered by Laravel.</p>
<p> </p>
<p>{{ $shop->name }}</p>
<p> </p>
<div class="links">
<a href="https://github.com/Kyon147/laravel-shopify" target="_blank">Package</a>
<a href="https://laravel.com" target="_blank">Laravel</a>
<a href="https://github.com/Kyon147/laravel-shopify" target="_blank">GitHub</a>
</div>
</div>
</div>
@endsection