One Hat Cyber Team
Your IP :
3.23.128.248
Server IP :
104.21.112.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
app.gftag.com
/
resources
/
views
/
item
/
View File Name :
index.blade.php
@extends('layouts.master') @section('styles') <style> .edit, .delete { border: none !important; margin: 1em; } .edit { color: #136BAF; } .delete { color: red; } </style> <link rel="stylesheet" href="{{ asset('css/lib/datatables-net/datatables.min.css') }}"> <link rel="stylesheet" href="{{ asset('css/separate/vendor/datatables-net.min.css')}}"> @endsection @section('content') <div class="page-content"> <div class="container-fluid"> <section class="card"> <div class="row"> <div class="header"> <div class="col-xs-8"> <h3 class="p-l">All Items</h3> </div> <div class="col-xs-4"> <a href="{{ route('create-item')}}" class="btn btn-rounded float-right p-r">Add Item</a> </div> </div> </div> </section> @if(session()->has('message')) <div class="alert alert-info alert-fill alert-close alert-dismissible fade in"> <strong>{{ session()->get('message') }}</strong> </div> @endif <section class="card"> <div class="card-block" style="overflow-x: scroll"> <table id="example" class="display table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>Item Name</th> <th>Item Type</th> <th>PO Rate</th> <th>Sales Rate</th> <th>TCS Rate</th> <th>SGST(%)</th> <th>CGST(%)</th> <th>IGST(%)</th> <th>Unit</th> <th>HSN Code</th> <th>Action</th> </tr> </thead> <tbody> @foreach($items as $item) <tr> <td>{{ $item->name }} {{ $item->pack_of }}</td> <td>{{ $item->type }}</td> <td>{{ $item->po_rate }}</td> <td>{{ $item->sale_rate }}</td> <td>{{ $item->tcs_rate }}</td> <td>{{ $item->sgst_rate }}</td> <td>{{ $item->cgst_rate }}</td> <td>{{ $item->igst_rate }}</td> <td>{{ $item->unit ?? '--' }}</td> <td>{{ $item->hsn_code }}</td> <td> <a href="{{route('edit-item',[$item->id])}}" class="edit" title="Edit"> <i class="fa fa-pencil-square-o fa-lg" aria-hidden="true"></i> </a> {{-- <a href="{{url('/item/delete/'.$item->id)}}" class="delete" title="Delete"> <i class="fa fa-trash fa-lg" aria-hidden="true"></i> </a> --}} </td> </tr> @endforeach </tbody> </table> </div> </section> </div> </div> @endsection @section('scripts') <script src="{{ asset('js/lib/datatables-net/datatables.min.js') }}"></script> <script> $(function() { $('#example').DataTable(); }); </script> @endsection