Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
palaniapp_demo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hussain Mohamed
palaniapp_demo
Commits
3bb83cfa
Commit
3bb83cfa
authored
Dec 20, 2025
by
Hussain Mohamed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes
parent
49f8a646
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
57 additions
and
57 deletions
+57
-57
add_edit.blade.php
resources/views/backend/brand/add_edit.blade.php
+11
-11
list.blade.php
resources/views/backend/brand/list.blade.php
+8
-8
add_edit.blade.php
resources/views/backend/industry/add_edit.blade.php
+11
-11
list.blade.php
resources/views/backend/industry/list.blade.php
+8
-8
add_edit.blade.php
resources/views/backend/type/add_edit.blade.php
+11
-11
list.blade.php
resources/views/backend/type/list.blade.php
+8
-8
No files found.
resources/views/backend/brand/add_edit.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Eye
Store or Update')
@section('title','
Brand
Store or Update')
@section('content')
<?php
$id
=
isset
(
$record
->
id
)
?
$record
->
id
:
''
;
$
eye_color
=
isset
(
$record
->
eye_color
)
?
$record
->
eye_color
:
''
;
$
brand
=
isset
(
$record
->
brand
)
?
$record
->
brand
:
''
;
$type
=
(
$id
==
''
)
?
'Create'
:
'Update'
;
?>
...
...
@@ -15,7 +15,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Eye
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Brand
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
<?=
$type
?>
</li>
</ol>
</nav>
...
...
@@ -23,25 +23,25 @@
</div>
<div
class=
"row"
>
<div
class=
"col-xl-12 col-xxl-12"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Eye
'
)
?>
"
enctype=
"multipart/form-data"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Brand
'
)
?>
"
enctype=
"multipart/form-data"
>
@csrf
<div>
<div
class=
"card"
>
<span></span>
<!-- Logistics Details Section -->
<div
class=
"card-header"
>
<h5
class=
"mb-0"
>
<?=
$type
?>
Eye
</h5>
<h5
class=
"mb-0"
>
<?=
$type
?>
Brand
</h5>
<div
class=
"float-end"
>
<a
href=
"
<?=
route
(
'
eye
'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
<a
href=
"
<?=
route
(
'
brand
'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
</div>
</div>
<input
type=
"hidden"
name=
"id"
value=
"
<?=
$id
?>
"
/>
<div
class=
"card-body"
>
<div
class=
"row g-4"
>
<div
class=
"col-xl-4"
>
<label
for=
"eye_color"
class=
"form-label"
>
Eye Color
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
eye_color
?>
"
class=
"form-control"
id=
"eye_color"
name=
"eye_color"
placeholder=
"Enter Eye Color
"
>
@error('
eye_color
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
<label
for=
"eye_color"
class=
"form-label"
>
Brand Name
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
brand
?>
"
class=
"form-control"
id=
"brand"
name=
"brand"
placeholder=
"Enter Brand Name
"
>
@error('
brand
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
</div>
</div>
...
...
@@ -64,11 +64,11 @@
$
(
function
()
{
$
(
"#countryForm"
).
validate
({
rules
:
{
eye_color
:
{
required
:
true
},
brand
:
{
required
:
true
},
},
messages
:
{
eye_color
:
{
required
:
"Please enter eye color
"
},
brand
:
{
required
:
"Please enter brand
"
},
},
errorElement
:
"span"
,
errorPlacement
:
function
(
error
,
element
)
{
...
...
resources/views/backend/brand/list.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Eye
List')
@section('title','
Brand
List')
@section('content')
<main
class=
"app-wrapper"
>
<div
class=
"container-fluid"
>
...
...
@@ -8,7 +8,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Eye
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Brand
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
List
</li>
</ol>
</nav>
...
...
@@ -19,14 +19,14 @@
<div
class=
"row"
>
<div
class=
"d-flex justify-content-end mb-4"
>
<a
href=
"<?php echo route('add
Eye') ?>"
class=
"btn btn-primary"
>
Add Eye
</a>
<a
href=
"<?php echo route('add
Brand') ?>"
class=
"btn btn-primary"
>
Add Brand
</a>
</div>
<table
id=
"datatables"
class=
"table table-nowrap table-hover table-bordered w-100 mt-5"
>
<thead>
<tr>
<th>
S.No
</th>
<th>
Eye Color
</th>
<th>
Brand
</th>
<th>
Status
</th>
<th>
Action
</th>
</tr>
...
...
@@ -38,11 +38,11 @@
?>
<tr>
<td>
<?php
echo
$i
?>
</td>
<td>
<?php
echo
$row
->
eye_color
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
Eye
Model')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<?php
echo
$row
->
brand
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
ProductBrand
Model')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Eye
'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
Eye
Model')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Brand
'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
ProductBrand
Model')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
</td>
</tr>
...
...
resources/views/backend/industry/add_edit.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Eye
Store or Update')
@section('title','
Industry
Store or Update')
@section('content')
<?php
$id
=
isset
(
$record
->
id
)
?
$record
->
id
:
''
;
$
eye_color
=
isset
(
$record
->
eye_color
)
?
$record
->
eye_color
:
''
;
$
industry
=
isset
(
$record
->
industry
)
?
$record
->
industry
:
''
;
$type
=
(
$id
==
''
)
?
'Create'
:
'Update'
;
?>
...
...
@@ -15,7 +15,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Eye
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Industry
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
<?=
$type
?>
</li>
</ol>
</nav>
...
...
@@ -23,25 +23,25 @@
</div>
<div
class=
"row"
>
<div
class=
"col-xl-12 col-xxl-12"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Eye
'
)
?>
"
enctype=
"multipart/form-data"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Industry
'
)
?>
"
enctype=
"multipart/form-data"
>
@csrf
<div>
<div
class=
"card"
>
<span></span>
<!-- Logistics Details Section -->
<div
class=
"card-header"
>
<h5
class=
"mb-0"
>
<?=
$type
?>
Eye
</h5>
<h5
class=
"mb-0"
>
<?=
$type
?>
Industry
</h5>
<div
class=
"float-end"
>
<a
href=
"
<?=
route
(
'
eye
'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
<a
href=
"
<?=
route
(
'
industry
'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
</div>
</div>
<input
type=
"hidden"
name=
"id"
value=
"
<?=
$id
?>
"
/>
<div
class=
"card-body"
>
<div
class=
"row g-4"
>
<div
class=
"col-xl-4"
>
<label
for=
"
eye_color"
class=
"form-label"
>
Eye Color
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
eye_color
?>
"
class=
"form-control"
id=
"eye_color"
name=
"eye_color
"
placeholder=
"Enter Eye Color"
>
@error('
eye_color
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
<label
for=
"
industry"
class=
"form-label"
>
Industry
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
industry
?>
"
class=
"form-control"
id=
"industry"
name=
"industry
"
placeholder=
"Enter Eye Color"
>
@error('
industry
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
</div>
</div>
...
...
@@ -64,11 +64,11 @@
$
(
function
()
{
$
(
"#countryForm"
).
validate
({
rules
:
{
eye_color
:
{
required
:
true
},
industry
:
{
required
:
true
},
},
messages
:
{
eye_color
:
{
required
:
"Please enter eye color
"
},
industry
:
{
required
:
"Please enter industry
"
},
},
errorElement
:
"span"
,
errorPlacement
:
function
(
error
,
element
)
{
...
...
resources/views/backend/industry/list.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Eye
List')
@section('title','
Industry
List')
@section('content')
<main
class=
"app-wrapper"
>
<div
class=
"container-fluid"
>
...
...
@@ -8,7 +8,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Eye
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Industry
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
List
</li>
</ol>
</nav>
...
...
@@ -19,14 +19,14 @@
<div
class=
"row"
>
<div
class=
"d-flex justify-content-end mb-4"
>
<a
href=
"<?php echo route('add
Eye') ?>"
class=
"btn btn-primary"
>
Add Eye
</a>
<a
href=
"<?php echo route('add
Industry') ?>"
class=
"btn btn-primary"
>
Add Industry
</a>
</div>
<table
id=
"datatables"
class=
"table table-nowrap table-hover table-bordered w-100 mt-5"
>
<thead>
<tr>
<th>
S.No
</th>
<th>
Eye
Color
</th>
<th>
Industry
Color
</th>
<th>
Status
</th>
<th>
Action
</th>
</tr>
...
...
@@ -38,11 +38,11 @@
?>
<tr>
<td>
<?php
echo
$i
?>
</td>
<td>
<?php
echo
$row
->
eye_color
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
Eye
Model')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<?php
echo
$row
->
industry
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
ProductIndustry
Model')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Eye
'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
Eye
Model')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Industry
'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
ProductIndustry
Model')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
</td>
</tr>
...
...
resources/views/backend/type/add_edit.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Ey
e Store or Update')
@section('title','
Typ
e Store or Update')
@section('content')
<?php
$id
=
isset
(
$record
->
id
)
?
$record
->
id
:
''
;
$
eye_color
=
isset
(
$record
->
eye_color
)
?
$record
->
eye_color
:
''
;
$
type
=
isset
(
$record
->
type
)
?
$record
->
type
:
''
;
$type
=
(
$id
==
''
)
?
'Create'
:
'Update'
;
?>
...
...
@@ -15,7 +15,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Ey
e
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Typ
e
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
<?=
$type
?>
</li>
</ol>
</nav>
...
...
@@ -23,25 +23,25 @@
</div>
<div
class=
"row"
>
<div
class=
"col-xl-12 col-xxl-12"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Ey
e'
)
?>
"
enctype=
"multipart/form-data"
>
<form
method=
"POST"
id=
"countryForm"
action=
"
<?=
route
(
'storeUpdate
Typ
e'
)
?>
"
enctype=
"multipart/form-data"
>
@csrf
<div>
<div
class=
"card"
>
<span></span>
<!-- Logistics Details Section -->
<div
class=
"card-header"
>
<h5
class=
"mb-0"
>
<?=
$type
?>
Ey
e
</h5>
<h5
class=
"mb-0"
>
<?=
$type
?>
Typ
e
</h5>
<div
class=
"float-end"
>
<a
href=
"
<?=
route
(
'
ey
e'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
<a
href=
"
<?=
route
(
'
typ
e'
)
?>
"
class=
"btn btn-primary"
>
Back
</a>
</div>
</div>
<input
type=
"hidden"
name=
"id"
value=
"
<?=
$id
?>
"
/>
<div
class=
"card-body"
>
<div
class=
"row g-4"
>
<div
class=
"col-xl-4"
>
<label
for=
"
eye_color
"
class=
"form-label"
>
Eye Color
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
eye_color
?>
"
class=
"form-control"
id=
"eye_color"
name=
"eye_color"
placeholder=
"Enter Eye Color
"
>
@error('
eye_color
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
<label
for=
"
type
"
class=
"form-label"
>
Eye Color
<span
class=
"text-danger"
>
*
</span></label>
<input
type=
"text"
value=
"
<?=
$
type
?>
"
class=
"form-control"
id=
"type"
name=
"type"
placeholder=
"Enter Type
"
>
@error('
type
')
<span
class=
"text-danger"
>
{{$message}}
</span>
@enderror
</div>
</div>
...
...
@@ -64,11 +64,11 @@
$
(
function
()
{
$
(
"#countryForm"
).
validate
({
rules
:
{
eye_color
:
{
required
:
true
},
type
:
{
required
:
true
},
},
messages
:
{
eye_color
:
{
required
:
"Please enter eye color
"
},
type
:
{
required
:
"Please enter type
"
},
},
errorElement
:
"span"
,
errorPlacement
:
function
(
error
,
element
)
{
...
...
resources/views/backend/type/list.blade.php
View file @
3bb83cfa
@extends('backend.app_template')
@section('title','
Ey
e List')
@section('title','
Typ
e List')
@section('content')
<main
class=
"app-wrapper"
>
<div
class=
"container-fluid"
>
...
...
@@ -8,7 +8,7 @@
<div
class=
"flex-shrink-0"
>
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb justify-content-end mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Ey
e
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"javascript:void(0)"
>
Typ
e
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
List
</li>
</ol>
</nav>
...
...
@@ -19,14 +19,14 @@
<div
class=
"row"
>
<div
class=
"d-flex justify-content-end mb-4"
>
<a
href=
"<?php echo route('add
Eye') ?>"
class=
"btn btn-primary"
>
Add Ey
e
</a>
<a
href=
"<?php echo route('add
Type') ?>"
class=
"btn btn-primary"
>
Add Typ
e
</a>
</div>
<table
id=
"datatables"
class=
"table table-nowrap table-hover table-bordered w-100 mt-5"
>
<thead>
<tr>
<th>
S.No
</th>
<th>
Eye Color
</th>
<th>
Type
</th>
<th>
Status
</th>
<th>
Action
</th>
</tr>
...
...
@@ -38,11 +38,11 @@
?>
<tr>
<td>
<?php
echo
$i
?>
</td>
<td>
<?php
echo
$row
->
eye_color
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
Ey
eModel')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<?php
echo
$row
->
type
?>
</td>
<td><a
data-placement=
"top"
title=
"Status"
data-original-title=
"Status"
href=
"javascript:void(0)"
onclick=
"changeStatus('
<?php
echo
$row
->
id
?>
','
<?php
echo
(
$row
->
status
==
1
)
?
0
:
1
?>
','
ProductTyp
eModel')"
class=
"badge bg-pill bg-
<?php
echo
(
$row
->
status
==
1
)
?
'success'
:
'danger'
?>
"
>
<?php
echo
(
$row
->
status
==
1
)
?
'Active'
:
'In-Active'
?>
</a></td>
<td>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Ey
e'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
Ey
eModel')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Edit"
href=
"
<?php
echo
route
(
'add
Typ
e'
,
[
$row
->
id
])
?>
"
class=
"btn btn-sm btn-warning"
><i
class=
"bi bi-pencil-fill"
></i></a>
<a
data-toggle=
"tooltip"
data-placement=
"top"
title=
"Delete"
data-original-title=
"Delete"
href=
"javascript:void(0)"
onclick=
"commonDelete('
<?php
echo
$row
->
id
?>
','
ProductTyp
eModel')"
class=
"btn btn-sm btn-danger"
><i
class=
"bi bi-trash-fill"
></i></a>
</td>
</tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment