@extends('layouts.app') @section('content') @php use App\Helpers\RouteHelper; @endphp @include(RouteHelper::getSidebarView()) Show Project Name of Project @error('name') {{ $message }} @enderror Customer Select a Customer @foreach ($customers as $customer) customer_id == $customer->id ? 'selected' : '' }}>{{ $customer->name }} @endforeach Customer user Select a Customer User @foreach ($customerUsers as $customerUser) customer_user_id == $customerUser->id ? 'selected' : '' }}> {{ $customerUser->name }} @endforeach Total QR to create @error('total_qr_count') {{ $message }} @enderror Function Type Select a Function function_type == 0 ? 'selected' : '' }}>Map to any function function_type == 1 ? 'selected' : '' }}>Scan to Call function_type == 2 ? 'selected' : '' }}>Scan to SMS function_type == 3 ? 'selected' : '' }}>Scan to Mail function_type == 4 ? 'selected' : '' }}>URL function_type == 5 ? 'selected' : '' }}>Text function_type == 6 ? 'selected' : '' }}>Whatsapp function_type == 7 ? 'selected' : '' }}>Wi-Fi function_type == 8 ? 'selected' : '' }}>Emergency Contact function_type == 9 ? 'selected' : '' }}>Lost and Found function_type == 10 ? 'selected' : '' }}>Contact Default URL @error('default_url') {{ $message }} @enderror Description {{ old('description', $project->description) }} @error('description') {{ $message }} @enderror Back {{-- Submit --}} {{-- @can('list customers', 'admin') --}} {{ $dataTable->table() }} {{-- @endcan --}} Unlink × @csrf When a QR is unlinked from user the QR can be associated to a different user and will disappear from here. @endsection @section('script') {{ $dataTable->scripts() }} {{-- --}} @endsection
When a QR is unlinked from user the QR can be associated to a different user and will disappear from here.