add view list data from google sheet
This commit is contained in:
35
resources/views/data/google-sheet/index.blade.php
Normal file
35
resources/views/data/google-sheet/index.blade.php
Normal file
@@ -0,0 +1,35 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'Google Sheets'])
|
||||
|
||||
@section('css')
|
||||
@vite(['node_modules/gridjs/dist/theme/mermaid.min.css'])
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Data', 'subtitle' => 'Google Sheets'])
|
||||
|
||||
<x-toast-notification />
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="card w-100">
|
||||
<div class="card-body">
|
||||
<div class="d-flex flex-wrap justify-content-end align-items-center mb-2">
|
||||
@if ($user_menu_permission['allow_create'])
|
||||
<a href="{{ route('google-sheets.create')}}" class="btn btn-success btn-sm d-block d-sm-inline w-auto">Create</a>
|
||||
@endif
|
||||
</div>
|
||||
<div id="table-data-google-sheets"
|
||||
data-updater="{{ $user_menu_permission['allow_update'] }}"
|
||||
data-destroyer="{{ $user_menu_permission['allow_destroy'] }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/data/google-sheet/index.js'])
|
||||
@endsection
|
||||
Reference in New Issue
Block a user