@extends('layouts.dashboard-app') @section('main-content')

Hello, Welcome {{auth()->user()->name}}

IT Products

Add New IT Products
@foreach ($itp as $item) @endforeach
Name Status Action
{{$item->name}} @if ($item->status == 1) Active @else Disabled @endif {{ Form::open([ 'method' => 'delete', 'route' => [ 'IT-product.destroy', $item->id ] ]) }} {{ Form::submit('Delete', ['class' => 'btn btn-danger']) }} {{ Form::close() }}
@endsection {{-- @@section('name') --}} {{-- @endsection --}}