@extends('admin::layouts.plane') @section('page_heading') {{$title}} @endsection @section('content')
{{$title}}
{{ Form::open([ 'method' => 'post', 'route' => 'DBExplorer','class' => 'form-horizontal']) }} {{ csrf_field() }}
{{Form::select('table_name', $db_tables, $table_name, [ 'id'=>'ui_table_name','class' => 'form-control','required' => ''])}} {{ Form::hidden('str', $str, ['id' => 'str' ]) }}
{{ Form::textarea('whereclause', '', ['id' => 'whereclause', 'class' => 'form- control' ,'placeholder' => 'Write where condition here', 'rows'=>3,'cols'=>120]) }}
{{ Form::submit('Submit', ['class' => 'btn btn-info']) }}
{{ Form::close() }}
@if(!isset($noButtonArray[$table_name])) @endif
@foreach($field_names as $key => $value) @endforeach @foreach ($result as $obj) @php $school_id = (isset($obj->school_id)?$obj->school_id:-1); @endphp @if(!isset($noButtonArray[$table_name])) @else @endif @foreach ($field_names as $f) @endforeach @endforeach
Action{{$value}}
@if($super_admin) @endif {{$obj->$f}}
@stop