Skip to content

Instantly share code, notes, and snippets.

@victorsteven
Created April 15, 2019 19:33
Show Gist options
  • Save victorsteven/4c917651dae1f865aaa0f2dcb7cbc605 to your computer and use it in GitHub Desktop.
Save victorsteven/4c917651dae1f865aaa0f2dcb7cbc605 to your computer and use it in GitHub Desktop.
Welcome file
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Datatable</title>
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
</head>
<body>
<div id="app">
{{-- This is the vue component --}}
<new-arrivals></new-arrivals>
</div>
<script src="{{ asset('js/app.js') }}"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment