71 lines
2.8 KiB
PHP
71 lines
2.8 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="page-content">
|
|
<div class="container-fluid">
|
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
|
|
|
|
|
<div class="mb-2 text-end">
|
|
@can('stockLocation.create')
|
|
<a href="{{ route('stockLocation.create') }}" class="btn btn-success btn-md waves-effect waves-light"><i
|
|
class="ri-add-fill me-1 align-bottom"></i> Add</a>
|
|
@endcan
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table id="buttons-datatables" class="display table-sm table-bordered table" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>S.N</th>
|
|
<th>Title</th>
|
|
<th>Slug</th>
|
|
<th>Status</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse ($stockLocations as $key => $stockLocation)
|
|
<tr>
|
|
<td>{{ $key + 1 }}</td>
|
|
<td>{{ $stockLocation->title }}</td>
|
|
<td>{{ $stockLocation->slug }}</td>
|
|
<td>{!! $stockLocation->status_name !!}</td>
|
|
<td>
|
|
<div class="hstack flex-wrap gap-3">
|
|
@can('stockLocation.show')
|
|
<a href="{{ route('stockLocation.show', $stockLocation->id) }}" class="link-info fs-15">
|
|
<i class="ri-eye-line"></i>
|
|
</a>
|
|
@endcan
|
|
@can('stockLocation.edit')
|
|
<a href="{{ route('stockLocation.edit', $stockLocation->id) }}"
|
|
class="link-success fs-15 edit-item-btn"><i class="ri-edit-2-line"></i></a>
|
|
@endcan
|
|
@can('stockLocation.destroy')
|
|
<a href="javascript:void(0);"
|
|
data-link="{{ route('stockLocation.destroy', $stockLocation->id) }}"
|
|
data-id="{{ $stockLocation->id }}" class="link-danger fs-15 remove-item-btn"><i
|
|
class="ri-delete-bin-line"></i></a>
|
|
@endcan
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--end row-->
|
|
</div>
|
|
</div>
|
|
@endsection
|