customer crud
@ -0,0 +1,107 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Customer;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class CustomerController extends Controller
|
||||
{
|
||||
public function index(Request $request)
|
||||
{
|
||||
$query = Customer::query()->with(['level']);
|
||||
|
||||
if ($request->q != '') {
|
||||
$query->where('name', 'like', "%$request->q%")
|
||||
->orWhere('fullname', 'like', "%$request->q%")
|
||||
->orWhere('email', 'like', "%$request->q%")
|
||||
->orWhere('phone', 'like', "%$request->q%");
|
||||
}
|
||||
|
||||
return inertia('Customer/Index', [
|
||||
'query' => $query->paginate(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
return inertia('Customer/Form');
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'username' => 'required|string|min:5|alpha_dash|unique:customers,username',
|
||||
'password' => 'required|string|min:8',
|
||||
'name' => 'required|string',
|
||||
'fullname' => 'required|string',
|
||||
'address' => 'required|string',
|
||||
'phone' => 'required|string',
|
||||
'image' => 'nullable|string',
|
||||
]);
|
||||
|
||||
Customer::create([
|
||||
'username' => $request->username,
|
||||
'password' => bcrypt($request->password),
|
||||
'name' => $request->name,
|
||||
'fullname' => $request->fullname,
|
||||
'address' => $request->address,
|
||||
'phone' => $request->phone,
|
||||
'image' => $request->image,
|
||||
]);
|
||||
|
||||
return redirect()->route('customer.index')
|
||||
->with('message', ['type' => 'success', 'message' => 'Item has beed saved']);
|
||||
}
|
||||
|
||||
public function edit(Customer $customer)
|
||||
{
|
||||
return inertia('Customer/Form', [
|
||||
'customer' => $customer
|
||||
]);
|
||||
}
|
||||
|
||||
public function update(Request $request, Customer $customer)
|
||||
{
|
||||
$request->validate([
|
||||
'username' => 'required|string|min:5|alpha_dash|unique:customers,username,' . $customer->id,
|
||||
'password' => 'nullable|string|min:8',
|
||||
'name' => 'required|string',
|
||||
'fullname' => 'required|string',
|
||||
'address' => 'required|string',
|
||||
'phone' => 'required|string',
|
||||
'image' => 'nullable|image',
|
||||
]);
|
||||
|
||||
if ($request->password != '') {
|
||||
$customer->password = bcrypt($request->password);
|
||||
}
|
||||
|
||||
if ($request->hasFile('image')) {
|
||||
$file = $request->file('image');
|
||||
$file->store('uploads', 'public');
|
||||
$customer->image = $file->hashName('uploads');
|
||||
}
|
||||
|
||||
$customer->update([
|
||||
'username' => $request->username,
|
||||
'password' => $customer->password,
|
||||
'name' => $request->name,
|
||||
'fullname' => $request->fullname,
|
||||
'address' => $request->address,
|
||||
'phone' => $request->phone,
|
||||
'image' => $customer->image,
|
||||
]);
|
||||
|
||||
return redirect()->route('customer.index')
|
||||
->with('message', ['type' => 'success', 'message' => 'Item has beed updated']);
|
||||
}
|
||||
|
||||
public function destroy(Customer $customer)
|
||||
{
|
||||
$customer->delete();
|
||||
|
||||
return redirect()->route('customer.index')
|
||||
->with('message', ['type' => 'success', 'message' => 'Item has beed deleted']);
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 261 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 296 KiB |
@ -0,0 +1,149 @@
|
||||
import React, { useEffect, Suspense } from 'react'
|
||||
import { isEmpty } from 'lodash'
|
||||
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
||||
import FormInput from '@/Components/FormInput'
|
||||
import Button from '@/Components/Button'
|
||||
import { Head, useForm } from '@inertiajs/react'
|
||||
import FormFile from '@/Components/FormFile'
|
||||
import FormInputWith from '@/Components/FormInputWith'
|
||||
import TextArea from '@/Components/TextArea'
|
||||
|
||||
export default function Form(props) {
|
||||
const { customer } = props
|
||||
|
||||
const { data, setData, post, processing, errors } = useForm({
|
||||
username: '',
|
||||
password: '',
|
||||
name: '',
|
||||
fullname: '',
|
||||
address: '',
|
||||
phone: '',
|
||||
image: '',
|
||||
image_url: '',
|
||||
})
|
||||
|
||||
const handleOnChange = (event) => {
|
||||
setData(
|
||||
event.target.name,
|
||||
event.target.type === 'checkbox'
|
||||
? event.target.checked
|
||||
? 1
|
||||
: 0
|
||||
: event.target.value
|
||||
)
|
||||
}
|
||||
const handleSubmit = () => {
|
||||
if (isEmpty(customer) === false) {
|
||||
post(route('customer.update', customer))
|
||||
return
|
||||
}
|
||||
post(route('customer.store'))
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (isEmpty(customer) === false) {
|
||||
setData({
|
||||
username: customer.username,
|
||||
password: customer.password,
|
||||
name: customer.name,
|
||||
fullname: customer.fullname,
|
||||
address: customer.address,
|
||||
phone: customer.phone,
|
||||
image: customer.image,
|
||||
image_url: customer.image_url,
|
||||
})
|
||||
}
|
||||
}, [customer])
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
auth={props.auth}
|
||||
errors={props.errors}
|
||||
flash={props.flash}
|
||||
page={'Customer'}
|
||||
action={'Form'}
|
||||
>
|
||||
<Head title="Customer" />
|
||||
|
||||
<div>
|
||||
<div className="mx-auto sm:px-6 lg:px-8">
|
||||
<div className="overflow-hidden p-4 shadow-sm sm:rounded-lg bg-white dark:bg-gray-800 flex flex-col ">
|
||||
<div className="text-xl font-bold mb-4">Customer</div>
|
||||
<FormInput
|
||||
name="fullname"
|
||||
value={data.fullname}
|
||||
onChange={handleOnChange}
|
||||
label="Nama Lengkap"
|
||||
error={errors.fullname}
|
||||
/>
|
||||
<FormInput
|
||||
name="name"
|
||||
value={data.name}
|
||||
onChange={handleOnChange}
|
||||
label="Nama Panggilan"
|
||||
error={errors.name}
|
||||
/>
|
||||
<FormInputWith
|
||||
type="number"
|
||||
leftItem={<div className="text-sm">+62</div>}
|
||||
name="phone"
|
||||
value={data.phone}
|
||||
onChange={handleOnChange}
|
||||
error={errors.phone}
|
||||
formClassName={'pl-10'}
|
||||
label="Whatsapp"
|
||||
/>
|
||||
<TextArea
|
||||
name="address"
|
||||
value={data.address}
|
||||
onChange={handleOnChange}
|
||||
label="Alamat Lengkap"
|
||||
error={errors.address}
|
||||
rows={4}
|
||||
/>
|
||||
<FormInput
|
||||
name="username"
|
||||
value={data.username}
|
||||
onChange={handleOnChange}
|
||||
label="username"
|
||||
error={errors.username}
|
||||
/>
|
||||
<FormInput
|
||||
name="password"
|
||||
value={data.password}
|
||||
onChange={handleOnChange}
|
||||
label="password"
|
||||
error={errors.password}
|
||||
/>
|
||||
<FormFile
|
||||
label={'Image'}
|
||||
onChange={(e) =>
|
||||
setData('image', e.target.files[0])
|
||||
}
|
||||
error={errors.image}
|
||||
preview={
|
||||
isEmpty(data.image_url) === false && (
|
||||
<img
|
||||
src={data.image_url}
|
||||
className="mb-1 h-24 w-24 object-cover rounded-full"
|
||||
alt="preview"
|
||||
/>
|
||||
)
|
||||
}
|
||||
/>
|
||||
|
||||
<div className="mt-8">
|
||||
<Button
|
||||
onClick={handleSubmit}
|
||||
processing={processing}
|
||||
>
|
||||
Simpan
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|
@ -0,0 +1,203 @@
|
||||
import React, { useEffect, useState } from 'react'
|
||||
import { Link, router } from '@inertiajs/react'
|
||||
import { usePrevious } from 'react-use'
|
||||
import { Head } from '@inertiajs/react'
|
||||
import { Button, Dropdown } from 'flowbite-react'
|
||||
import { HiPencil, HiTrash } from 'react-icons/hi'
|
||||
import { useModalState } from '@/hooks'
|
||||
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
||||
import Pagination from '@/Components/Pagination'
|
||||
import ModalConfirm from '@/Components/ModalConfirm'
|
||||
import SearchInput from '@/Components/SearchInput'
|
||||
import { hasPermission } from '@/utils'
|
||||
|
||||
export default function Customer(props) {
|
||||
const {
|
||||
query: { links, data },
|
||||
auth,
|
||||
} = props
|
||||
|
||||
const [search, setSearch] = useState('')
|
||||
const preValue = usePrevious(search)
|
||||
|
||||
const confirmModal = useModalState()
|
||||
|
||||
const handleDeleteClick = (customer) => {
|
||||
confirmModal.setData(customer)
|
||||
confirmModal.toggle()
|
||||
}
|
||||
|
||||
const onDelete = () => {
|
||||
if (confirmModal.data !== null) {
|
||||
router.delete(route('customer.destroy', confirmModal.data.id))
|
||||
}
|
||||
}
|
||||
|
||||
const params = { q: search }
|
||||
useEffect(() => {
|
||||
if (preValue) {
|
||||
router.get(
|
||||
route(route().current()),
|
||||
{ q: search },
|
||||
{
|
||||
replace: true,
|
||||
preserveState: true,
|
||||
}
|
||||
)
|
||||
}
|
||||
}, [search])
|
||||
|
||||
const canCreate = hasPermission(auth, 'create-customer')
|
||||
const canUpdate = hasPermission(auth, 'update-customer')
|
||||
const canDelete = hasPermission(auth, 'delete-customer')
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
auth={props.auth}
|
||||
errors={props.errors}
|
||||
flash={props.flash}
|
||||
page={'Customer'}
|
||||
action={''}
|
||||
>
|
||||
<Head title="Customer" />
|
||||
|
||||
<div>
|
||||
<div className="mx-auto sm:px-6 lg:px-8 ">
|
||||
<div className="p-6 overflow-hidden shadow-sm sm:rounded-lg bg-gray-200 dark:bg-gray-800 space-y-4">
|
||||
<div className="flex justify-between">
|
||||
{canCreate && (
|
||||
<Link href={route('customer.create')}>
|
||||
<Button size="sm">Tambah</Button>
|
||||
</Link>
|
||||
)}
|
||||
<div className="flex items-center">
|
||||
<SearchInput
|
||||
onChange={(e) => setSearch(e.target.value)}
|
||||
value={search}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="overflow-auto">
|
||||
<div>
|
||||
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400 mb-4">
|
||||
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
||||
<tr>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Nama
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Level
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Deposit
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Coin
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6 w-1/8"
|
||||
/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{data.map((customer) => (
|
||||
<tr
|
||||
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
|
||||
key={customer.id}
|
||||
>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
|
||||
>
|
||||
{customer.name}
|
||||
</td>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6"
|
||||
>
|
||||
{customer.level.name}
|
||||
</td>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6"
|
||||
>
|
||||
{customer.display_deposit}
|
||||
</td>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6"
|
||||
>
|
||||
{customer.display_coin}
|
||||
</td>
|
||||
<td className="py-4 px-6 flex justify-end">
|
||||
<Dropdown
|
||||
label={'Opsi'}
|
||||
floatingArrow={true}
|
||||
arrowIcon={true}
|
||||
dismissOnClick={true}
|
||||
size={'sm'}
|
||||
>
|
||||
{canUpdate && (
|
||||
<Dropdown.Item>
|
||||
<Link
|
||||
href={route(
|
||||
'customer.edit',
|
||||
customer
|
||||
)}
|
||||
className="flex space-x-1 items-center"
|
||||
>
|
||||
<HiPencil />
|
||||
<div>
|
||||
Ubah
|
||||
</div>
|
||||
</Link>
|
||||
</Dropdown.Item>
|
||||
)}
|
||||
{canDelete && (
|
||||
<Dropdown.Item
|
||||
onClick={() =>
|
||||
handleDeleteClick(
|
||||
customer
|
||||
)
|
||||
}
|
||||
>
|
||||
<div className="flex space-x-1 items-center">
|
||||
<HiTrash />
|
||||
<div>
|
||||
Hapus
|
||||
</div>
|
||||
</div>
|
||||
</Dropdown.Item>
|
||||
)}
|
||||
</Dropdown>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div className="w-full flex items-center justify-center">
|
||||
<Pagination links={links} params={params} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ModalConfirm modalState={confirmModal} onConfirm={onDelete} />
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|