Skip to content

Instantly share code, notes, and snippets.

@sadhakbj
Created November 20, 2018 08:59
Show Gist options
  • Select an option

  • Save sadhakbj/3f9b9e8879dac7eea3a573bea37963e3 to your computer and use it in GitHub Desktop.

Select an option

Save sadhakbj/3f9b9e8879dac7eea3a573bea37963e3 to your computer and use it in GitHub Desktop.
Data Table -1 - welcome
<!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