@extends('admin.layouts.template')
@section('page_heading')
@section('content')
ระดับเทคโนโลยี
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
ชื่ออุปกรณ์ |
ประเภทเทคโนโลยี |
สเปค |
รุ่น |
ยี่ห้อ |
จัดการ |
@foreach($techs as $tech)
{{ $tech->name}} |
@if($tech->type == 1)
เครื่องแม่ข่าย |
@else
อุปกรณ์ |
@endif
{{ $tech->tech_spec}} |
{{ $tech->model}} |
{{ $tech->brand}}
|
{!! Form::open(array('route'=>['tech.destroy',$tech->id],'method'=>'DELETE')) !!}
@if($tech->type == 1)
@else
@endif
{!! Form::button('',['class'=>'fa fa-trash del','type'=>'submit']) !!}
{!! Form::close() !!}
|
@endforeach
@stop