|
@@ -1,39 +1,53 @@
|
|
@extends ('layouts/template')
|
|
@extends ('layouts/template')
|
|
@section('content')
|
|
@section('content')
|
|
|
|
|
|
-<div class="row">
|
|
|
|
- <div class="col-md-12">
|
|
|
|
- <div class="d-flex align-items-center justify-content-between">
|
|
|
|
- <h5>Stat Trees</h5>
|
|
|
|
- <div>
|
|
|
|
- <a href="{{ route('practice-management.statTrees.createPage') }}" class="btn btn-sm btn-primary">Create Tree</a>
|
|
|
|
|
|
+<main role="main" class="stag-content px-0">
|
|
|
|
+ <div class="p-3 mcp-theme-1">
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-12">
|
|
|
|
+ <div class="card">
|
|
|
|
+ <div class="card-header">
|
|
|
|
+ <div class="d-flex align-items-center justify-content-between">
|
|
|
|
+ <div>
|
|
|
|
+ <h6 class="font-weight-bold mb-0"><i class="fas fa-network-wired"></i> Stat Trees</h6>
|
|
|
|
+ </div>
|
|
|
|
+ <div>
|
|
|
|
+ <a href="{{ route('practice-management.statTrees.createPage') }}" class="btn btn-sm btn-primary text-white"><i class="fas fa-folder-plus"></i> Create Tree</a>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="card-body p-0">
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-md-12">
|
|
|
|
+ <div class="table-responsive">
|
|
|
|
+ <table class="table table-condensed p-0 m-0">
|
|
|
|
+ <thead class="bg-light">
|
|
|
|
+ <tr>
|
|
|
|
+ <th class="border-0">ID</th>
|
|
|
|
+ <th class="border-0">Name</th>
|
|
|
|
+ <th class="border-0">Model</th>
|
|
|
|
+ <th class="border-0">Slug</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ @foreach($statTrees as $statTree)
|
|
|
|
+ <tr>
|
|
|
|
+ <td><a href="{{ route('practice-management.statTrees.view.dashboard', $statTree) }}">{{ $statTree->id }}</a></td>
|
|
|
|
+ <td>{{ $statTree->name }}</td>
|
|
|
|
+ <td>{{ $statTree->model }}</td>
|
|
|
|
+ <td>{{ $statTree->slug }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="col-md-12">
|
|
|
|
- <div class="table-responsive">
|
|
|
|
- <table class="table">
|
|
|
|
- <thead>
|
|
|
|
- <tr>
|
|
|
|
- <th>ID</th>
|
|
|
|
- <th>Name</th>
|
|
|
|
- <th>Model</th>
|
|
|
|
- <th>Slug</th>
|
|
|
|
- </tr>
|
|
|
|
- </thead>
|
|
|
|
- <tbody>
|
|
|
|
- @foreach($statTrees as $statTree)
|
|
|
|
- <tr>
|
|
|
|
- <td><a href="{{ route('practice-management.statTrees.view.dashboard', $statTree) }}">{{ $statTree->id }}</a></td>
|
|
|
|
- <td>{{ $statTree->name }}</td>
|
|
|
|
- <td>{{ $statTree->model }}</td>
|
|
|
|
- <td>{{ $statTree->slug }}</td>
|
|
|
|
- </tr>
|
|
|
|
- @endforeach
|
|
|
|
- </tbody>
|
|
|
|
- </table>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
-</div>
|
|
|
|
|
|
+</main>
|
|
|
|
|
|
@endsection
|
|
@endsection
|