Viewing file: index.blade.php (5.93 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.dashboard')
@section('title',trans('layout.item_list'))
@section('css')
@endsection
@section('main-content') <div class="row page-titles mx-0"> <div class="col-sm-6 p-md-0"> <div class="welcome-text"> <h4>{{trans('layout.item')}}</h4> <p class="mb-0">{{trans('layout.your_item')}}</p> </div> </div> <div class="col-sm-6 p-md-0 justify-content-sm-end mt-2 mt-sm-0 d-flex"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">{{trans('layout.home')}}</a></li> <li class="breadcrumb-item active"><a href="javascript:void(0)">{{trans('layout.items')}}</a></li> </ol> </div> </div> <!-- row -->
<div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-header"> <h4 class="card-title">{{trans('layout.list')}}</h4> <div class="pull-right"> <a href="{{route('item.create')}}" class="btn btn-sm btn-primary">{{trans('layout.create')}}</a> </div> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-responsive-md"> <thead> <tr> <th><strong>{{trans('layout.name')}}</strong></th> <th><strong>{{trans('layout.restaurant')}}</strong></th> <th><strong>{{trans('layout.category')}}</strong></th> <th><strong>{{trans('layout.discount')}}</strong></th> <th><strong>{{trans('layout.discount_type')}}</strong></th> <th><strong>{{trans('layout.tax')}}</strong></th> <th><strong>{{trans('layout.price')}}</strong></th> <th><strong>{{trans('layout.status')}}</strong></th> <th></th> </tr> </thead> <tbody>
@foreach($items as $key=>$item) <tr> <td>{{$item->name}}</td> <td>{{$item->restaurant->name}}</td> <td>{{$item->category->name}}</td> <td>{{$item->discount}}</td> <td>{{$item->discount_type}}</td> <td> @if($item->tax->title) {{$item->tax->title}} ({{$item->tax->type=='percentage'?formatNumber($item->tax->amount).'%':formatNumberWithCurrSymbol($item->tax->amount)}}) @endif </td> <td>{{$item->price}}</td> <td> @if($item->status=='active') <span class="badge light badge-success">{{trans('layout.active')}}</span> @elseif($item->status=='inactive') <span class="badge light badge-warning">{{trans('layout.inactive')}}</span> @endif </td> <td> <div class="dropdown"> <button type="button" class="btn btn-success light sharp" data-toggle="dropdown"> <svg width="20px" height="20px" viewBox="0 0 24 24" version="1.1"> <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <rect x="0" y="0" width="24" height="24"/> <circle fill="#000000" cx="5" cy="12" r="2"/> <circle fill="#000000" cx="12" cy="12" r="2"/> <circle fill="#000000" cx="19" cy="12" r="2"/> </g> </svg> </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{route('item.edit',[$item])}}">{{trans('layout.edit')}}</a> <button class="dropdown-item" type="button" data-message="{{trans('layout.message.item_delete_warning')}}" data-action='{{route('item.destroy',[$item])}}' data-input={"_method":"delete"} data-toggle="modal" data-target="#modal-confirm">{{trans('layout.delete')}}</button> </div> </div> </td> </tr> @endforeach
</tbody> </table> </div> </div> </div> </div> </div>
@endsection
@section('js')
@endsection
|