role_id !== 1; } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\Transaction $transaction * @return \Illuminate\Auth\Access\Response|bool */ public function update(User $user, Transaction $transaction) { return true; } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Transaction $transaction * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Transaction $transaction) { // } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Transaction $transaction * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Transaction $transaction) { // } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Transaction $transaction * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Transaction $transaction) { // } }