@extends('admin.layouts.template')
@section('page_heading')
@section('content')
Technology
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
Sever
Device
Technology Tables
ลำดับ |
ชื่ออุปกรณ์ |
ยี่ห้อ |
จัดการลำดับ |
จัดการ |
@foreach($techs as $tech)
{{ $tech->id}} |
{{ $tech->name}} |
{{ $tech->brand}} |
|
{!! Form::open(array('route'=>['tech.destroy',$tech->id],'method'=>'DELETE')) !!}
{!! Form::button('',['class'=>'fa fa-trash del','type'=>'submit']) !!}
{!! Form::close() !!}
|
@endforeach
@stop