Created
November 20, 2018 08:59
-
-
Save sadhakbj/3f9b9e8879dac7eea3a573bea37963e3 to your computer and use it in GitHub Desktop.
Data Table -1 - welcome
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="{{ 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>Laravel</title> | |
| <link rel="stylesheet" href="{{ asset('css/app.css') }}"/> | |
| </head> | |
| <body> | |
| <div class="flex-center position-ref full-height" id="app"> | |
| <div class="container"> | |
| <data-table | |
| fetch-url="{{ route('users.table') }}" | |
| :columns="['name', 'email', 'address' , 'created_at']" | |
| ></data-table> | |
| </div> | |
| </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