More Laravel/AdminLTE updates

This commit is contained in:
Deon George
2019-11-23 12:51:30 +11:00
parent 6a17fd3716
commit bafc34b1c0
26 changed files with 410 additions and 565 deletions

View File

@@ -1,4 +1,18 @@
@extends('layouts.app')
@extends('adminlte::layouts.app')
@section('htmlheader_title')
Deletes
@endsection
@section('contentheader_title')
Deletes
@endsection
@section('contentheader_description')
#
@endsection
@section('page_title')
Deletes
@endsection
<?php $data = [
'ID'=>['id','idlink'],
@@ -13,7 +27,7 @@
];?>
@section('content')
<div class="container">
<div class="row">
<div class="col-md-11 col-md-offset-1">
<div class="panel panel-default">
@@ -43,7 +57,7 @@
@elseif($d->count())
@php($src = $d->first())
{!! $src->view() !!}
<table class="table table-striped table-condensed table-hover small">
<table class="table table-striped table-sm table-hover small">
@foreach($data as $k=>$v)
<tr><th>{{$k}}</th><td>{!! $src->{$v[1]} !!}</td></tr>
@endforeach
@@ -76,5 +90,4 @@
</div>
</div>
</div>
</div>
@endsection
@endsection